summaryrefslogtreecommitdiffstats
path: root/.gvimrc
blob: 6a282f69dddd7dc99b7d686176a1f72dff0879b1 (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
34
35
36
37
38
39
" 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 darkblue

" 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

" Yank and put to/from the 'quoteplus' register so we can share clipboards
set clipboard=unnamedplus

" Allow tagbar to expand the GUI window
let g:tagbar_expand = 1