feat(vim-airline): Change icon shown for UNIX file format

Although it is nice to see the corresponding GNU/Linux distro logo in
the status bar; there is no relation between Debian, Fedora, Arch, etc,
and the file having UNIX line endings.

This patch anonymizes that by making the status bar show just a Tux then
the file has UNIX line-ending terminations.
This commit is contained in:
Dionisio E Alonso 2024-04-10 21:57:37 -03:00
parent 4d95556967
commit 465dfb7080
2 changed files with 2 additions and 0 deletions

View File

@ -111,5 +111,6 @@ let g:airline#extensions#tagbar#flags = 'f' " Requires majutsushi/tagbar plugin
if exists('g:colors_name') && g:colors_name == 'vscode'
let g:airline_theme = 'codedark' " vscode.nvim doesn't provide one
endif
let g:DevIconsEnableDistro = v:false
lua require("treesitter")

View File

@ -102,3 +102,4 @@ let g:airline_mode_map = {
\ 's': 'S',
\ }
let g:airline#extensions#tagbar#flags = 'f' " Requires majutsushi/tagbar plugin
let g:DevIconsEnableDistro = v:false