mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08:00
Fix conditional in vimrcs/extended.vim
In the font section change has("linux") to has("unix"). Vim does not have "linux" feature only "unix".
This commit is contained in:
parent
879a7b6bd4
commit
03d4dae0e4
@ -17,7 +17,7 @@ if has("mac") || has("macunix")
|
||||
set gfn=Menlo:h15
|
||||
elseif has("win16") || has("win32")
|
||||
set gfn=Bitstream\ Vera\ Sans\ Mono:h11
|
||||
elseif has("linux")
|
||||
elseif has("unix")
|
||||
set gfn=Monospace\ 11
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user