gvimrc (718B) [raw]
1 " Disable visual bells 2 set noerrorbells visualbell t_vb= 3 autocmd GUIEnter * set visualbell t_vb= 4 5 " Pretty printing 6 set printoptions=left:1in,right:1in,paper:letter 7 set printfont=Consolas:h11 8 9 " Minimal UI 10 set guioptions= " Don't show guioptions (toolbar, scrollbar,..) 11 set guicursor=a:blinkon0 " Don't blink the cursor (not my thang) 12 13 " Font that doesn't hurt my eyes at a size depending on the screen 14 if has('gui_macvim') 15 set guifont=Inconsolata:h15 16 elseif has('win32') || has('win64') 17 set guifont=Consolas:h11 18 else 19 set guifont=Inconsolata\ 14 20 end 21 22 " Bigger size on startup 23 set lines=50 24 set columns=100 25 26 " The pop-up asking if you want to reload forces mouse usage :O 27 set autoread