목차

GVim

마우스 사라짐 현상

Font Size 조정

maximize

if has("gui_running")
  " GUI is running or is about to start.
  " Maximize gvim window (for an alternative on Windows, see simalt below).
  set lines=999 columns=999
else
  " This is console Vim.
  if exists("+lines")
    set lines=50
  endif
  if exists("+columns")
    set columns=100
  endif
endif

Toolbar Icon Size

:set toolbariconsize=tiny|small|medium|large|huge|giant