]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
fecbf915c2e426b7bda41f85ec424e4ea34e1e45
[config/dotfiles.git] / vimrc
1 " Vim main configuration file.
2
3
4 " EDITOR SETTINGS
5
6 " Save 'runtimepath' in case it was changed by the system's configuration
7 " files. Also save 'diff' as set all& resets it; but somehow later (after
8 " sourcing the vimrc - for example in a VimEnter autocmd) it gets
9 " automagically restored to the correct value.
10 if has('eval')
11     let s:save_runtimepath = &runtimepath
12     let s:save_diff = &diff
13 endif
14 " Reset all options (except 'term', 'lines' and 'columns'). This makes sure a
15 " system wide configuration file doesn't change default values.
16 set all&
17 " And restore it after all other options were reset.
18 if has('eval')
19     let &runtimepath = s:save_runtimepath
20     let &diff = s:save_diff
21     unlet s:save_runtimepath
22     unlet s:save_diff
23 endif
24
25 " Make sure Vim (and not Vi) settings are used.
26 set nocompatible
27
28 " Use UTF-8 for all internal data (buffers, registers, etc.). This doesn't
29 " affect reading files in different encodings, see 'fileencodings' for that.
30 set encoding=utf-8
31
32 " Load my scripts from ~/.vim (my scripts) and ~/.vim/runtime (checkout of Vim
33 " runtime files) if available.
34 set runtimepath-=~/.vim
35 set runtimepath^=~/.vim,~/.vim/runtime
36
37 " Don't store swap files in the same directory as the edited file.
38 set directory-=.
39 " But store them in ~/.tmp if available.
40 set directory^=~/.tmp
41
42 " Disable modelines as they may cause security problems. Instead use
43 " securemodelines (Vim script #1876).
44 set nomodeline
45
46 " Complete to longest common string (list:longest) and then complete all full
47 " matches after another (full). Thanks to pbrisbin
48 " (http://pbrisbin.com:8080/dotfiles/vimrc).
49 set wildmode=list:longest,full
50
51 " Increase history of executed commands (:).
52 set history=1000
53
54 " Increase number of possible undos.
55 set undolevels=1000
56
57 " Use strong encryption if possible, also used for swap/undo files.
58 if exists('+cryptmethod')
59     set cryptmethod=blowfish
60 endif
61
62
63 " EDIT SETTINGS
64
65 " Enable automatic file detection, plugin and indention support.
66 if has('autocmd')
67     filetype off " necessary for pathogen to force a reload of ftplugins
68     filetype plugin indent on
69 endif
70
71 " Use UTF-8 file encoding for all files. Automatically recognize latin1 in
72 " existing files.
73 set fileencodings=utf-8,latin1
74
75 " Wrap text after 78 characters.
76 set textwidth=78
77
78 " Set tabs to 4 spaces, use softtabs.
79 set shiftwidth=4
80 set softtabstop=4
81 set expandtab
82 " When < and > is used indent/deindent to the next 'shiftwidth' boundary.
83 set shiftround
84 " Use the default value for real tabs.
85 set tabstop=8
86
87 " Enable auto indention.
88 set autoindent
89
90 " When joining lines only add one space after a sentence.
91 set nojoinspaces
92
93 " Allow backspacing over autoindent and line breaks.
94 set backspace=indent,eol
95
96 " Start a comment when hitting enter after a commented line (r) and when using
97 " o or O around a commented line (o).
98 set formatoptions+=ro
99 " Don't break a line if was already longer then 'textwidth' when insert mode
100 " started.
101 set formatoptions+=l
102
103 " Allow virtual editing (cursor can be positioned anywhere, even when there is
104 " no character) in visual block mode.
105 set virtualedit=block
106
107 " Already display matches while typing the search command. This makes spotting
108 " errors easy.
109 set incsearch
110
111 " Activate syntax folding.
112 if has('folding')
113     set foldmethod=syntax
114     set foldcolumn=2
115     set foldlevel=99 " no closed folds at default, 'foldenable' would disable
116                      " folding which is not what I want
117 endif
118
119 " Only check for case if the searched word contains a capital character.
120 set ignorecase
121 set smartcase
122
123 " Activate spell checking, use English as default.
124 if exists('+spell') && has('syntax')
125     " But not when diffing as spell checking is distracting in this case.
126     if !&diff
127         set spell
128     endif
129     set spelllang=en_us
130 endif
131
132 " Allow buffers with changes to be hidden. Very important for effective
133 " editing with multiple buffers.
134 set hidden
135
136
137 " DISPLAY SETTINGS
138
139 " Use a dark background. Doesn't change the background color, only sets text
140 " colors for a dark terminal.
141 set background=dark
142
143 " Display line numbers.
144 set number
145 " But use as little space as necessary for the numbers column. Thanks to James
146 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
147 if exists('+numberwidth')
148     set numberwidth=1
149 endif
150 " Display the ruler with current line/file position. If 'statusline' is used
151 " then this only affects <C-G>.
152 set ruler
153 " Display partial commands in the status line.
154 set showcmd
155
156 " Don't redraw screen when executing macros; increases speed. Thanks to James
157 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
158 set lazyredraw
159
160 " Visualize the line the cursor is currently in.
161 if exists('+cursorline')
162     set cursorline
163 endif
164
165 " Display tabs, trailing space, non breakable spaces and long lines (when
166 " wrapping is disabled).
167 set list
168 set listchars=trail:-,extends:>
169 if v:version >= 700
170     set listchars+=nbsp:!
171 endif
172
173 if has('statusline')
174     " Always display the status line even if there is only one window.
175     set laststatus=2
176
177     set statusline=
178     " on the left
179     set statusline+=%02n: " buffer number
180     set statusline+=%f\   " path to current file in buffer
181     set statusline+=%h    " [help] if buffer is help file
182     set statusline+=%w    " [Preview] if buffer is preview buffer
183     set statusline+=%m    " [+] if buffer was modified,
184                           " [-] if 'modifiable' is off
185     set statusline+=%r    " [RO] if buffer is read only
186
187     " on the right
188     set statusline+=%=                " right align
189     set statusline+=0x%-8B\           " current character under cursor as hex
190     set statusline+=%-12.(%l,%c%V%)\  " line number (%l),
191                                       " column number (%c),
192                                       " virtual column number if different
193                                       "                       than %c (%V)
194     set statusline+=%P                " position in file in percent
195 endif
196
197
198 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
199
200 " Easy way to exit insert mode.
201 inoremap jj <Esc>
202 inoremap jk <Esc>
203 " Also for command mode, thanks to http://github.com/mitechie/pyvim
204 " (2010-10-15).
205 cnoremap jj <C-C>
206 cnoremap jk <C-C>
207
208 " Disable arrow keys for all modes except command modes. Thanks to James Vega
209 " (http://git.jamessan.com/?p=etc/vim.git;a=summary).
210 map <Right>  <Nop>
211 map <Left>   <Nop>
212 map <Up>     <Nop>
213 map <Down>   <Nop>
214 imap <Right> <Nop>
215 imap <Left>  <Nop>
216 imap <Up>    <Nop>
217 imap <Down>  <Nop>
218 " Also disable arrow keys in command mode, use <C-P>/<C-N> as replacement (see
219 " below).
220 cmap <Up>    <Nop>
221 cmap <Down>  <Nop>
222 cmap <Right> <Nop>
223 cmap <Left>  <Nop>
224
225 " Use <C-P>/<C-N> as replacement for <Up>/<Down> in command mode. Thanks to
226 " abstrakt and grayw in #vim on Freenode (2010-04-12 21:20 CEST).
227 cnoremap <C-P> <Up>
228 cnoremap <C-N> <Down>
229
230 " Write before suspending, thanks to deryni in #vim on Freenode (2011-05-09
231 " 20:02 CEST). To suspend without saving either unmap this or use :stop<CR>.
232 nnoremap <silent> <C-Z> :update<CR>:stop<CR>
233
234 " 2<C-G> gives more verbose information, use it by default. Thanks to NCS_One
235 " in #vim on Freenode (2011-08-15 00:17 CEST).
236 nnoremap <C-G> 2<C-G>
237
238 " Use <Space> to move down a page and - to move up one like in mutt.
239 nnoremap <Space> <C-F>
240 nnoremap - <C-B>
241
242 " Go to next and previous buffer. Thanks to elik in #vim on Freenode
243 " (2010-05-16 18:38 CEST) for this idea.
244 nnoremap <silent> gb :bnext<CR>
245 nnoremap <silent> gB :bprev<CR>
246
247 " Fast access to buffers.
248 nnoremap <silent> <Leader>1 :1buffer<CR>
249 nnoremap <silent> <Leader>2 :2buffer<CR>
250 nnoremap <silent> <Leader>3 :3buffer<CR>
251 nnoremap <silent> <Leader>4 :4buffer<CR>
252 nnoremap <silent> <Leader>5 :5buffer<CR>
253 nnoremap <silent> <Leader>6 :6buffer<CR>
254 nnoremap <silent> <Leader>7 :7buffer<CR>
255 nnoremap <silent> <Leader>8 :8buffer<CR>
256 nnoremap <silent> <Leader>9 :9buffer<CR>
257 nnoremap <silent> <Leader>0 :10buffer<CR>
258
259 " Make last active window the only window. Similar to <C-W> o.
260 nnoremap <C-W>O <C-W>p<C-W>o
261
262 " Maps to change spell language between English and German and disable spell
263 " checking.
264 if exists('+spell')
265     noremap <silent> <Leader>sn :set nospell<CR>
266     noremap <silent> <Leader>se :set spell spelllang=en_us<CR>
267     noremap <silent> <Leader>sd :set spell spelllang=de_de<CR>
268 endif
269
270 " Add semicolon to the end of the line. Thanks to
271 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
272 " on Freenode for an improved version which doesn't clobber any marks.
273 nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
274
275 " * and # for selections in visual mode. Thanks to
276 " http://got-ravings.blogspot.com/2008/07/vim-pr0n-visual-search-mappings.html
277 " and all nerds involved (godlygeek, strull in #vim on Freenode).
278 if has('eval')
279     function! s:VSetSearch()
280         let l:temp = @@
281         normal! gvy
282         let @/ = '\V' . substitute(escape(@@, '\'), '\n', '\\n', 'g')
283         let @@ = l:temp
284     endfunction
285     vnoremap * :<C-U>call <SID>VSetSearch()<CR>//<CR>
286     vnoremap # :<C-U>call <SID>VSetSearch()<CR>??<CR>
287 endif
288
289 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
290 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
291 " mailing list for the commands.
292 if v:version < 700
293     cnoreabbrev W w
294     cnoreabbrev Wa wa
295     cnoreabbrev Wq wq
296     cnoreabbrev Wqa wqa
297 else
298     cnoreabbrev <expr> W
299         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
300     cnoreabbrev <expr> Wa
301         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wa' : 'Wa')
302     cnoreabbrev <expr> Wq
303         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
304     cnoreabbrev <expr> Wqa
305         \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
306 endif
307 " Also fix my typo with "Q".
308 if v:version < 700
309     cnoreabbrev Q q
310     cnoreabbrev Qa qa
311 else
312     cnoreabbrev <expr> Q
313         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
314     cnoreabbrev <expr> Qa
315         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
316 endif
317
318 " In case 'hlsearch' is used disable it with <C-L>. Thanks to frogonwheels and
319 " vimgor (bot) in #vim on Freenode (2010-03-30 05:58 CEST).
320 noremap <silent> <C-L> :nohlsearch<CR><C-L>
321
322 " <C-U> in insert mode deletes a lot, break undo sequence before deleting the
323 " line so the change can be undone. Thanks to the vimrc_example.vim file in
324 " Vim's source.
325 inoremap <C-U> <C-G>u<C-U>
326 " Same for <C-@> (insert previously inserted text and leave insert mode).
327 inoremap <C-@> <C-G>u<C-@>
328 " And for <C-A> (insert previously inserted text).
329 inoremap <C-A> <C-G>u<C-A>
330 " And for <C-W> (delete word before cursor).
331 inoremap <C-W> <C-G>u<C-W>
332
333 if has('eval')
334 " New text-objects ii and ai to work on text with the same indentation. Thanks
335 " to http://vim.wikia.com/index.php?title=Indent_text_object&oldid=27126
336 " (visited on 2011-11-19).
337     onoremap <silent> ai :<C-U>call <SID>IndTxtObj(0)<CR>
338     onoremap <silent> ii :<C-U>call <SID>IndTxtObj(1)<CR>
339     vnoremap <silent> ai :<C-U>call <SID>IndTxtObj(0)<CR><Esc>gv
340     vnoremap <silent> ii :<C-U>call <SID>IndTxtObj(1)<CR><Esc>gv
341
342     function! s:IndTxtObj(inner)
343         let curline = line(".")
344         let lastline = line("$")
345         let i = indent(line(".")) - &shiftwidth * (v:count1 - 1)
346         let i = i < 0 ? 0 : i
347         if getline(".") !~ "^\\s*$"
348             let p = line(".") - 1
349             let nextblank = getline(p) =~ "^\\s*$"
350             while p > 0
351                     \ && ((i == 0 && !nextblank)
352                         \ || (i > 0 && ((indent(p) >= i
353                             \ && !(nextblank && a:inner))
354                             \ || (nextblank && !a:inner))))
355                 -
356                 let p = line(".") - 1
357                 let nextblank = getline(p) =~ "^\\s*$"
358             endwhile
359             normal! 0V
360             call cursor(curline, 0)
361             let p = line(".") + 1
362             let nextblank = getline(p) =~ "^\\s*$"
363             while p <= lastline
364                     \ && ((i == 0 && !nextblank)
365                         \ || (i > 0 && ((indent(p) >= i
366                             \ && !(nextblank && a:inner))
367                             \ || (nextblank && !a:inner))))
368                 +
369                 let p = line(".") + 1
370                 let nextblank = getline(p) =~ "^\\s*$"
371             endwhile
372             normal! $
373         endif
374     endfunction
375 endif
376
377
378 " ABBREVIATIONS
379
380 " Fix some of my spelling mistakes.
381 iabbrev relle reelle
382 iabbrev reele reelle
383
384
385 " SYNTAX SETTINGS
386
387 " Activate syntax coloring.
388 if has('syntax')
389     syntax enable
390
391 " Don't highlight more than 500 columns as I normally don't have that long
392 " lines and they slow down syntax coloring. Thanks to Derek Wyatt
393 " (http://www.derekwyatt.org/vim/the-vimrc-file/).
394     if exists('+synmaxcol')
395         set synmaxcol=500
396     endif
397
398 " Highlight lines longer than 78 characters. Thanks to Tony Mechelynck
399 " <antoine.mechelynck@gmail.com> from the Vim mailing list. It can easily be
400 " disabled when necessary with :2match (in Vim >= 700).
401     if exists(':2match')
402         2match Todo /\%>78v./
403     else
404         match Todo /\%>78v./
405     endif
406
407     if exists('*matchadd')
408 " Highlight some important keywords in all documents.
409         for s:x in ['TODO', 'XXX', 'FIXME', 'CHANGED', 'REMOVED', 'DELETED']
410             call matchadd('Todo', s:x)
411         endfor
412
413 " Highlight unicode whitespace which is no normal whitespace (0x20).
414         for s:x in ['00a0', '1680', '180e', '2000', '2001', '2002', '2003',
415                 \ '2004', '2005', '2006', '2007', '2008', '2009', '200a',
416                 \ '200b', '200c', '200d', '202f', '205f', '2060', '3000',
417                 \ 'feff']
418             call matchadd('Error', '\%u' . s:x)
419         endfor
420     endif
421
422 " Settings for specific filetypes.
423
424     " Haskell.
425     let g:hs_highlight_boolean = 1
426     let g:hs_highlight_types = 1
427     let g:hs_highlight_more_types = 1
428
429     " Perl.
430     let g:perl_fold = 1
431     let g:perl_fold_blocks = 1
432     let g:perl_nofold_packages = 1
433     let g:perl_include_pod = 1 " syntax coloring for PODs
434 endif
435
436
437 " PLUGIN SETTINGS
438
439 if has('eval')
440 " Use pathogen which allows one 'runtimepath' entry per plugin. This makes
441 " installing/removing/updating plugins simple. (Used for plugins with more
442 " than one file.)
443     if v:version >= 700
444         execute 'call pathogen#runtime_append_all_bundles()'
445     endif
446
447 " Settings for the NERD commenter.
448     " Don't create any mappings I don't want to use.
449     let g:NERDCreateDefaultMappings = 0
450     " Map toggle comment.
451     map <Leader><Leader> <Plug>NERDCommenterToggle
452
453 " XPTemplate settings.
454     " Try to maintain snippet rendering even after editing outside of a
455     " snippet.
456     let g:xptemplate_strict = 0
457     " Don't complete any braces automatically.
458     let g:xptemplate_brace_complete = 0
459     " Only highlight the current placeholder.
460     let g:xptemplate_highlight = 'current'
461 endif
462
463
464 " AUTO COMMANDS
465
466 " Use a custom auto group to prevent problems when the vimrc files is sourced
467 " twice.
468 if has('autocmd')
469     augroup vimrc
470 " Remove all autocmds from the current group.
471         autocmd!
472
473 " Go to last position of opened files. Taken from :help last-position-jump.
474         autocmd BufReadPost *
475             \ if line("'\"") > 1 && line("'\"") <= line("$") |
476             \     execute "normal! g'\"" |
477             \ endif
478 " But not for Git commits, go to beginning of the file.
479         autocmd BufReadPost COMMIT_EDITMSG normal! gg
480
481 " Make sure 'list' and 'number' is disabled in help files. This is necessary
482 " when switching to a help buffer which is in the background with :buffer as
483 " these options are local to windows (and not only to buffers). This happens
484 " because I often want to use only one window and thus the help buffer is in
485 " the background.
486         autocmd BufWinEnter *.txt
487             \ if &filetype == 'help' |
488             \     setlocal nolist |
489             \     setlocal nonumber |
490             \ endif
491
492 " Automatically disable 'paste' mode when leaving insert mode. Thanks to
493 " Raimondi in #vim on Freenode (2010-08-14 23:01 CEST). Very useful as I only
494 " want to paste once and then 'paste' gets automatically unset.
495         if exists('##InsertLeave')
496             autocmd InsertLeave * set nopaste
497         endif
498
499 " Write file when running :mak[e] before 'makeprg' is called.
500         autocmd QuickFixCmdPre * write
501
502 " AFTER/FTPLUGIN AUTO COMMANDS
503
504 " Disable spell checking for files which don't need it.
505         autocmd FileType deb  setlocal nospell
506         autocmd FileType diff setlocal nospell
507         autocmd FileType tar  setlocal nospell
508 " Fix to allow Vim edit crontab files as crontab doesn't work with
509 " backupcopy=auto.
510         autocmd FileType crontab setlocal backupcopy=yes
511 " Don't use the modeline in git commits as the diff created by `git commit -v`
512 " may contain one which could change the filetype or other settings of the
513 " commit buffer. Also make sure we use only 72 characters per line which is
514 " the recommendation for git commit messages (http://tpope.net/node/106).
515         autocmd FileType gitcommit let g:secure_modelines_allowed_items = [] |
516                                  \ setlocal textwidth=72
517 " Use the same comment string as for Vim files in Vimperator files.
518         autocmd FileType vimperator setlocal commentstring=\"%s
519 " Use tex compiler for (La)TeX files.
520         autocmd FileType tex compiler tex
521
522 " FTDETECT AUTO COMMANDS
523
524 " Recognize .md as markdown files (Vim default is .mkd).
525         autocmd BufRead,BufNewFile *.md set filetype=mkd
526 " Recognize .test as Tcl files.
527         autocmd BufRead,BufNewFile *.test set filetype=tcl
528
529 " OTHER AUTO COMMANDS
530
531 " Disable spell checking, displaying of list characters and long lines when
532 " viewing documentation.
533         autocmd BufReadPost /usr/share/doc/* setlocal nospell nolist | 2match
534
535 " Use diff filetype for mercurial patches in patch queue.
536         autocmd BufReadPost */.hg/patches/* set filetype=diff
537
538     augroup END
539 endif
540
541
542 " CUSTOM FUNCTIONS AND COMMANDS
543
544 if has('eval')
545 " Convenient command to see the difference between the current buffer and the
546 " file it was loaded from, thus the changes you made. Thanks to the
547 " vimrc_example.vim file in Vim's source. Modified to use the same filetype
548 " for the diffed file than the filetype for the original file.
549     if !exists(":DiffOrig")
550         command DiffOrig
551             \ let s:diff_orig_filetype = &filetype
552             \ | vertical new
553             \ | let &filetype = s:diff_orig_filetype
554             \ | unlet s:diff_orig_filetype
555             \ | set buftype=nofile
556             \ | read ++edit #
557             \ | 0d_
558             \ | diffthis
559             \ | wincmd p
560             \ | diffthis
561     endif
562 endif