" " User configuration file for Vi IMproved GUI " " It is sourced after .vimrc " " 10 GUI if has("gui_running") autocmd BufWritePost ~/.gvimrc source ~/.gvimrc endif if has("win32") set guifont=courier_new_cyr:h10 else set guifont=Monospace\ 14 set toolbar=icons,text " how to show the toolbar endif " set guicursor+=a:blinkon0 " Stop cursor blinking " Make shift-insert work like in Xterm " map " map! " Set nice colors " Background for normal text is light grey " Cursor is green " Text below the last line is darker grey " Status line is bright white on blue highlight Normal guibg=grey90 highlight Cursor guibg=green guifg=NONE highlight NonText guibg=grey80 highlight Constant guibg=grey90 highlight Special gui=NONE guibg=grey90 highlight StatusLine gui=bold guifg=white guibg=blue " ---------- " From http://slobin.pp.ru/vim/_vimrc.html " Arrows should go into wrapped lines, but not while popup menu is visible imap pumvisible() ? "" : "gj" imap pumvisible() ? "" : "gk" " The key should select from completion menu without adding a newline imap pumvisible() ? "" : "" " ----------