mirror of
1
0
Fork 0

Fix guifont config format in gtk2 & linux, see also https://github.com/amix/vimrc/issues/436 (#511)

This commit is contained in:
demokn 2019-11-16 23:57:25 +08:00 committed by Amir Salihefendic
parent 538ee9c6e7
commit e620d9d46b
1 changed files with 2 additions and 2 deletions

View File

@ -14,9 +14,9 @@ if has("mac") || has("macunix")
elseif has("win16") || has("win32") elseif has("win16") || has("win32")
set gfn=IBM\ Plex\ Mono:h14,Source\ Code\ Pro:h12,Bitstream\ Vera\ Sans\ Mono:h11 set gfn=IBM\ Plex\ Mono:h14,Source\ Code\ Pro:h12,Bitstream\ Vera\ Sans\ Mono:h11
elseif has("gui_gtk2") elseif has("gui_gtk2")
set gfn=IBM\ Plex\ Mono:h14,:Hack\ 14,Source\ Code\ Pro\ 12,Bitstream\ Vera\ Sans\ Mono\ 11 set gfn=IBM\ Plex\ Mono\ 14,:Hack\ 14,Source\ Code\ Pro\ 12,Bitstream\ Vera\ Sans\ Mono\ 11
elseif has("linux") elseif has("linux")
set gfn=IBM\ Plex\ Mono:h14,:Hack\ 14,Source\ Code\ Pro\ 12,Bitstream\ Vera\ Sans\ Mono\ 11 set gfn=IBM\ Plex\ Mono\ 14,:Hack\ 14,Source\ Code\ Pro\ 12,Bitstream\ Vera\ Sans\ Mono\ 11
elseif has("unix") elseif has("unix")
set gfn=Monospace\ 11 set gfn=Monospace\ 11
endif endif