summaryrefslogtreecommitdiffstats
path: root/.gvimrc
blob: 0243d48efa59aa0f4ca67be2f5926bce54ba4fcc (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
29
30
31
32
33
" 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

" Show '↪ ' at the beginning of wrapped lines
if has("linebreak")
	let &sbr = '↪ '
endif