summaryrefslogtreecommitdiffstats
path: root/.gvimrc
blob: 001c1fcc80dc5b073f01ed3037dd7e502a2ebf14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
" Make external commands work through a pipe instead of a pseudo-tty
"set noguipty

" set the X11 font to use
set guifont=Monospace\ 12

" Make command line two lines high and always show it
set ch=1
set laststatus=2

" Hide the mouse when typing text
set mousehide

" Make shift-insert work like in Xterm
map <S-Insert> <MiddleMouse>
map! <S-Insert> <MiddleMouse>

" Highlighting strings inside C comments
let c_comment_strings=1

" Setup a nice colorscheme
colorscheme blue

" Enable spellchecking by default
setlocal spell spelllang=en_us

" Increase the update time of various operations for improved plugin handling
set updatetime=500