vim-config/plugin/01-gui.vim

17 lines
367 B
VimL

" This is special settings for vim-gui.
"
if has("gui_running")
if has("gui_gtk2")
set guifont=Inconsolata\ 12
elseif has("gui_macvim")
set guifont=Menlo\ Regular:h14
elseif has("gui_win32")
set guifont=CaskaydiaMono\ NFM:h12
endif
set go-=T
set go-=m
set go-=r
set go-=L
colorscheme catppuccin_mocha
endif