vim/ginit.vim
Kenneth Benzie (Benie) 2188095b2f Always use fresh colorscheme on Windows
Windows Terminal has support for 256 color so there is not need to
restrict where to use `fresh` as the `colorscheme`.
2021-07-11 16:53:22 +01:00

8 lines
127 B
VimL

if exists(':GuiFont')
if platform#is_windows()
GuiFont Consolas:h9
else
GuiFont Source\ Code\ Pro:h9
endif
endif