VIM: Difference between revisions

Jump to navigation Jump to search
277 bytes added ,  6 December 2019
→‎gvim on Windows 10: Setting GUI font in .vimrc
→‎gvim on Windows 10: Installing vim-plug on Windows 10
→‎gvim on Windows 10: Setting GUI font in .vimrc
Line 243: Line 243:


= gvim on Windows 10 =
= gvim on Windows 10 =
== Setting GUI font in .vimrc ==
<source lang="vim">
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=Consolas:h11:cANSI
  endif
endif
</source>


== Installing vim-plug ==
== Installing vim-plug ==

Navigation menu