13 lines
238 B
VimL
13 lines
238 B
VimL
if exists(':GuiFont')
|
|
if platform#is_windows()
|
|
GuiFont! Source\ Code\ Pro:h10
|
|
else
|
|
GuiFont Source\ Code\ Pro:h9
|
|
endif
|
|
endif
|
|
|
|
if exists(':GuiTabline')
|
|
" Don't use GUI tabline, matches terminal tabline.
|
|
GuiTabline 0
|
|
endif
|