]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
48f52f335e1deec75a45c1219ae38d4df5978cbd
[config/dotfiles.git] / vimrc
1 " Vim main configuration file.
2
3 " Copyright (C) 2008-2012  Simon Ruderich
4 "
5 " This file is free software: you can redistribute it and/or modify
6 " it under the terms of the GNU General Public License as published by
7 " the Free Software Foundation, either version 3 of the License, or
8 " (at your option) any later version.
9 "
10 " This file is distributed in the hope that it will be useful,
11 " but WITHOUT ANY WARRANTY; without even the implied warranty of
12 " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 " GNU General Public License for more details.
14 "
15 " You should have received a copy of the GNU General Public License
16 " along with this file.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 " EDITOR SETTINGS
20
21 " Save 'runtimepath' in case it was changed by the system's configuration
22 " files. Also save 'diff' as set all& resets it; but somehow later (after
23 " sourcing the vimrc - for example in a VimEnter autocmd) it gets
24 " automagically restored to the correct value.
25 if has('eval')
26     let s:save_runtimepath = &runtimepath
27     let s:save_diff = &diff
28 endif
29 " Reset all options (except 'term', 'lines' and 'columns'). This makes sure a
30 " system wide configuration file doesn't change default values.
31 set all&
32 " And restore it after all other options were reset.
33 if has('eval')
34     let &runtimepath = s:save_runtimepath
35     let &diff = s:save_diff
36     unlet s:save_runtimepath
37     unlet s:save_diff
38 endif
39
40 " Make sure Vim (and not Vi) settings are used.
41 set nocompatible
42
43 " Use UTF-8 for all internal data (buffers, registers, etc.). This doesn't
44 " affect reading files in different encodings, see 'fileencodings' for that.
45 set encoding=utf-8
46
47 " Load my scripts from ~/.vim (my scripts) and ~/.vim/runtime (checkout of Vim
48 " runtime files) if available.
49 set runtimepath-=~/.vim
50 set runtimepath^=~/.vim,~/.vim/runtime
51
52 " Don't store swap files in the same directory as the edited file. But only if
53 " we have a "safe" writable directory available.
54 if filewritable('~/.tmp') == 2 || filewritable('~/tmp') == 2
55     set directory-=.
56 endif
57 " But store them in ~/.tmp or ~/tmp (already set by default) if available.
58 set directory^=~/.tmp
59
60 " Disable modelines as they may cause security problems. Instead use
61 " securemodelines (Vim script #1876).
62 set nomodeline
63
64 " Complete to longest common string (list:longest) and then complete all full
65 " matches after another (full). Thanks to pbrisbin
66 " (http://pbrisbin.com:8080/dotfiles/vimrc).
67 set wildmode=list:longest,full
68 " Ignore case when completing files/directories.
69 if exists('+wildignorecase')
70     set wildignorecase
71 endif
72
73 " Show completion menu even if only one entry matches.
74 if exists('+completeopt')
75     set completeopt+=menuone
76 endif
77
78 " Increase history of executed commands (:).
79 set history=1000
80
81 " Increase number of possible undos.
82 set undolevels=1000
83
84 " Remember marks (including the last cursor position) for more files.
85 if has('viminfo')
86     set viminfo^='1000
87 endif
88
89 " Use strong encryption if possible, also used for swap/undo files.
90 if exists('+cryptmethod')
91     set cryptmethod=blowfish
92 endif
93
94 " Clear all vimrc-related autocmds. Has to be done here as the vimrc augroup
95 " is used multiple times.
96 if has('autocmd')
97     augroup vimrc
98         autocmd!
99     augroup END
100 endif
101
102
103 " HELPER FUNCTIONS
104
105 if has('eval')
106 " Check if the given syntax group is available. Thanks to bairui in #vim on
107 " Freenode (2012-02-19 01:15 CET) for the try/catch silent highlight idea.
108     function! s:HasSyntaxGroup(group)
109         try
110             execute 'silent highlight ' . a:group
111         " \a = [A-Za-z]
112         catch /^Vim\%((\a\+)\)\=:E411/ " 'highlight group not found'
113             return 0
114         endtry
115         return 1
116     endfunction
117
118 " Check if the given Vim version and patch is available.
119     function! s:HasVersionAndPatch(version, patch)
120         return v:version > a:version
121             \ || (v:version == a:version && has('patch' . a:patch))
122     endfunction
123 endif
124
125
126 " EDIT SETTINGS
127
128 " Enable automatic file detection, plugin and indention support.
129 if has('autocmd')
130     filetype off " necessary for pathogen to force a reload of ftplugins
131     filetype plugin indent on
132 endif
133
134 " Use UTF-8 file encoding for all files. Automatically recognize latin1 in
135 " existing files.
136 set fileencodings=utf-8,latin1
137
138 " Always use unix line-endings for new files.
139 set fileformats=unix,dos
140
141 " Wrap text after 78 characters.
142 set textwidth=78
143
144 " Set tabs to 4 spaces, use softtabs.
145 set shiftwidth=4
146 set softtabstop=4
147 set expandtab
148 " When < and > is used indent/deindent to the next 'shiftwidth' boundary.
149 set shiftround
150 " Use the default value for real tabs.
151 set tabstop=8
152
153 " Enable auto indention.
154 set autoindent
155
156 " When joining lines only add one space after a sentence.
157 set nojoinspaces
158
159 " Allow backspacing over autoindent and line breaks.
160 set backspace=indent,eol
161
162 " Start a comment when hitting enter after a commented line (r) and when using
163 " o or O around a commented line (o).
164 set formatoptions+=ro
165 " Don't break a line if was already longer then 'textwidth' when insert mode
166 " started.
167 set formatoptions+=l
168 " Remove comment leader when joining lines where it makes sense.
169 if <SID>HasVersionAndPatch(703, 541)
170     set formatoptions+=j
171 endif
172
173 " Allow virtual editing (cursor can be positioned anywhere, even when there is
174 " no character) in visual block mode.
175 set virtualedit=block
176
177 " Already display matches while typing the search command. This makes spotting
178 " errors easy.
179 set incsearch
180
181 " Activate syntax folding.
182 if has('folding')
183     set foldmethod=syntax
184     " Only use fold column if we have enough space (for example not in a
185     " (virtual) terminal which has only 80 columns).
186     if &columns > 80
187         set foldcolumn=2
188     endif
189     set foldlevel=99 " no closed folds at default, 'foldenable' would disable
190                      " folding which is not what I want
191 endif
192
193 " Only check case if the searched word contains a capital character.
194 set ignorecase
195 set smartcase
196
197 " Activate spell checking, use English as default.
198 if exists('+spell') && has('syntax')
199     " But not when diffing because spell checking is distracting in this case.
200     if !&diff
201         set spell
202     endif
203     set spelllang=en_us
204 endif
205
206 " Allow buffers with changes to be hidden. Very important for effective
207 " editing with multiple buffers. Prevents the "E37: No write since last change
208 " (add ! to override)" warning.
209 set hidden
210
211
212 " DISPLAY SETTINGS
213
214 " Use a dark background. Doesn't change the background color, only sets text
215 " colors for a dark terminal.
216 set background=dark
217
218 " Use my color scheme if 256 colors are available.
219 if &t_Co == 256 || has('gui_running')
220     colorscheme simon
221 endif
222
223 " Display line numbers.
224 set number
225 " But use as little space as possible for the numbers column. Thanks to James
226 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
227 if exists('+numberwidth')
228     set numberwidth=1
229 endif
230 " Display the ruler with current line/file position. If 'statusline' is used
231 " then this only affects <C-G>.
232 set ruler
233 " Display partial commands in the status line.
234 set showcmd
235
236 " Don't redraw screen when executing macros; increases speed. Thanks to James
237 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
238 set lazyredraw
239
240 " Visualize the line the cursor is currently in.
241 if exists('+cursorline')
242     set cursorline
243 endif
244
245 " Highlight all matches on the screen when searching. Use <C-L> (see below) to
246 " remove the highlighting until the next search.
247 set hlsearch
248
249 " Display some special characters.
250 set list
251 set listchars=
252 " Display tabs as ">--------".
253 set listchars+=tab:>-
254 " Display trailing whitespace as "-".
255 set listchars+=trail:-
256 " Display markers for long lines when wrapping is disabled.
257 set listchars+=extends:>,precedes:<
258 " Display non-breakable space as "!".
259 if v:version >= 700
260     set listchars+=nbsp:!
261 endif
262
263 " Don't draw the vertical split separator by using space as character. Thanks
264 " to scp1 in #vim on Freenode (2012-06-16 16:12 CEST) for the idea to use a
265 " non-breakable space. But a simple space works as well, as long as the
266 " current color scheme is not reset.
267 if has('windows') && has('folding')
268     set fillchars+=vert:\  " comment to prevent trailing whitespace
269 endif
270
271 if has('statusline')
272     " Always display the status line even if there is only one window.
273     set laststatus=2
274
275     " If there's more than one buffer return "/<nr>" (e.g. "/05") where <nr>
276     " is the highest buffer number, otherwise return nothing. Used in
277     " 'statusline' to get an overview of available buffer numbers.
278     function! StatuslineBufferCount()
279         let l:bufnr = bufnr('$')
280         if l:bufnr > 1
281             let l:result = '/'
282             if exists('*printf')
283                 let l:result .= printf('%02d', l:bufnr)
284             else
285                 " Older Vims don't have printf() (and no .= either). Emulate
286                 " "%02d".
287                 if l:bufnr < 10
288                     let l:result = l:result . '0'
289                 endif
290                 let l:result = l:result . l:bufnr
291             endif
292             return l:result
293         else
294             return ''
295         endif
296     endfunction
297
298     " Like %f but use relative filename if it's shorter than the absolute path
299     " (e.g. '../../file' vs. '~/long/path/to/file'). fnamemodify()'s ':.' is
300     " not enough because it doesn't create '../'s.
301     function! StatuslineRelativeFilename()
302         " Display only filename for help files.
303         if &buftype == 'help'
304             return expand('%:t')
305         endif
306         " Special case for scratch files.
307         if &buftype == 'nofile'
308             return '[Scratch]'
309         endif
310
311         let l:path = expand('%')
312         " No file.
313         if l:path == ''
314             return '[No Name]'
315         endif
316         " Path is already relative, nothing to do.
317         if stridx(l:path, '/') != 0
318             return l:path
319         endif
320
321         " Absolute path to this file.
322         let l:path = expand('%:p')
323         " Shortened path to this file, thanks to bairui in #vim on Freenode
324         " (2012-06-23 00:54) for the tip to use fnamemodify(). This is what
325         " Vim normally uses as %f (minus some exceptions).
326         let l:original_path = fnamemodify(l:path, ':~')
327         " Absolute path to the current working directory.
328         let l:cwd = getcwd()
329
330         " Working directory completely contained in path, replace it with a
331         " relative path. Happens for example when opening a file with netrw.
332         " %f displays this as absolute path, but we want a relative path of
333         " course.
334         if stridx(l:path, l:cwd) == 0
335             return strpart(l:path, strlen(l:cwd) + 1)
336         endif
337
338         let l:path_list = split(l:path, '/')
339         let l:cwd_list  = split(l:cwd,  '/')
340
341         " Remove the common path.
342         while l:path_list[0] == l:cwd_list[0]
343             call remove(l:path_list, 0)
344             call remove(l:cwd_list,  0)
345         endwhile
346
347         " Add as many '..' as necessary for the relative path and join the
348         " path. Thanks to Raimondi in #vim on Freenode (2012-06-23 01:13) for
349         " the hint to use repeat() instead of a loop.
350         let l:path = repeat('../', len(l:cwd_list)) . join(l:path_list, '/')
351
352         " Use the shorter path, either relative or absolute.
353         if strlen(l:path) < strlen(l:original_path)
354             return l:path
355         else
356             return l:original_path
357         endif
358     endfunction
359
360     set statusline=
361     " on the left
362     set statusline+=%02n  " buffer number
363     set statusline+=%{StatuslineBufferCount()} " highest buffer number
364     set statusline+=:
365     if has('modify_fname') && v:version >= 700 " some functions need 7.0
366         set statusline+=%{StatuslineRelativeFilename()} " path to current file
367         set statusline+=\     " space after path
368     else
369         set statusline+=%f\   " path to current file in buffer
370     endif
371     set statusline+=%h    " [help] if buffer is help file
372     set statusline+=%w    " [Preview] if buffer is preview buffer
373     set statusline+=%m    " [+] if buffer was modified,
374                           " [-] if 'modifiable' is off
375     set statusline+=%r    " [RO] if buffer is read only
376
377     " on the right
378     set statusline+=%=                " right align
379     set statusline+=0x%-8B\           " current character under cursor as hex
380     set statusline+=%-12.(%l,%c%V%)\  " line number (%l),
381                                       " column number (%c),
382                                       " virtual column number if different
383                                       "                       than %c (%V)
384     set statusline+=%P                " position in file in percent
385 endif
386
387
388 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
389
390 " noremap is used to make sure the right side is executed as is and can't be
391 " modified by a plugin or other settings. Except for <Nop> which isn't
392 " affected by mappings.
393
394 " Easy way to exit insert mode. jk is preferred because it's faster.
395 inoremap jj <Esc>
396 inoremap jk <Esc>
397 " Also for command mode, thanks to http://github.com/mitechie/pyvim
398 " (2010-10-15).
399 cnoremap jj <C-C>
400 cnoremap jk <C-C>
401
402 " Disable arrow keys for all modes except command modes. Thanks to James Vega
403 " (http://git.jamessan.com/?p=etc/vim.git;a=summary).
404 map <Right>  <Nop>
405 map <Left>   <Nop>
406 map <Up>     <Nop>
407 map <Down>   <Nop>
408 imap <Right> <Nop>
409 imap <Left>  <Nop>
410 imap <Up>    <Nop>
411 imap <Down>  <Nop>
412 " Also disable arrow keys in command mode, use <C-P>/<C-N> as replacement (see
413 " below).
414 cmap <Up>    <Nop>
415 cmap <Down>  <Nop>
416 cmap <Right> <Nop>
417 cmap <Left>  <Nop>
418
419 " Use <C-P>/<C-N> as replacement for <Up>/<Down> in command mode. Thanks to
420 " abstrakt and grayw in #vim on Freenode (2010-04-12 21:20 CEST).
421 cnoremap <C-P> <Up>
422 cnoremap <C-N> <Down>
423
424 if has('eval')
425 " Don't move the cursor to the first column for certain scroll commands (<C-F,
426 " <C-B>, <C-D>, <C-U>). Thanks to jamessan in #vim on Freenode (2011-08-31
427 " 02:27 CEST) for the 'nostartofline' tip. But I can't use 'nostartofline'
428 " directly because it also enables that feature for other commands which I
429 " don't want.
430
431     " Set 'nostartofline' for a single movement.
432     function! s:TemporaryNostartofline(movement)
433         let l:startofline = &startofline
434         set nostartofline
435         execute 'normal! ' . a:movement
436         let &startofline = l:startofline
437     endfunction
438
439     " Thanks to fow in #vim on Freenode (2012-02-16 15:38 CET) for the idea to
440     " use "<Bslash><Lt>"; Vim documentation reference: :help <>.
441     nnoremap <silent> <C-F>
442         \ :call <SID>TemporaryNostartofline("<Bslash><Lt>C-F>")<CR>
443     nnoremap <silent> <C-B>
444         \ :call <SID>TemporaryNostartofline("<Bslash><Lt>C-B>")<CR>
445     nnoremap <silent> <C-D>
446         \ :call <SID>TemporaryNostartofline("<Bslash><Lt>C-D>")<CR>
447     nnoremap <silent> <C-U>
448         \ :call <SID>TemporaryNostartofline("<Bslash><Lt>C-U>")<CR>
449 endif
450
451 " Write before suspending, thanks to deryni in #vim on Freenode (2011-05-09
452 " 20:02 CEST). To suspend without saving either unmap this or use :stop<CR>.
453 " Only the current buffer is written, thus switching to another buffer works
454 " too.
455 nnoremap <silent> <C-Z> :update<CR>:stop<CR>
456
457 " 2<C-G> gives more verbose information, use it by default. Thanks to NCS_One
458 " in #vim on Freenode (2011-08-15 00:17 CEST).
459 nnoremap <C-G> 2<C-G>
460
461 " Use <Space> to move down a page and - to move up one like in mutt. Don't use
462 " nnoremap so the <C-F>/<C-B> 'nostartofline' fix (see above) works.
463 nmap <Space> <C-F>
464 nmap - <C-B>
465
466 " Go to next and previous buffer. Thanks to elik in #vim on Freenode
467 " (2010-05-16 18:38 CEST) for this idea.
468 nnoremap <silent> gb :bnext<CR>
469 nnoremap <silent> gB :bprevious<CR>
470 if has('eval')
471     " But when starting again at the first buffer, print a warning which
472     " reminds me that I've already seen that buffer.
473     function! s:NextBuffer()
474         " Are we currently on the last buffer and moving to the first?
475         let l:last_buffer = 0
476         if bufnr('%') == bufnr('$') && bufnr('$') > 1
477             let l:last_buffer = 1
478         endif
479
480         " Go to the next buffer.
481         if !l:last_buffer
482             bnext
483
484         " Go to the first buffer, silent is necessary or the following message
485         " won't be displayed because it's overwritten by the status message
486         " displayed when entering a buffer.
487         else
488             silent bnext
489
490             echohl WarningMsg
491             echo 'Starting again at first buffer.'
492             echohl None
493         endif
494     endfunction
495     nnoremap <silent> gb :call <SID>NextBuffer()<CR>
496 endif
497
498 " Fast access to buffers.
499 nnoremap <silent> <Leader>1 :1buffer<CR>
500 nnoremap <silent> <Leader>2 :2buffer<CR>
501 nnoremap <silent> <Leader>3 :3buffer<CR>
502 nnoremap <silent> <Leader>4 :4buffer<CR>
503 nnoremap <silent> <Leader>5 :5buffer<CR>
504 nnoremap <silent> <Leader>6 :6buffer<CR>
505 nnoremap <silent> <Leader>7 :7buffer<CR>
506 nnoremap <silent> <Leader>8 :8buffer<CR>
507 nnoremap <silent> <Leader>9 :9buffer<CR>
508 nnoremap <silent> <Leader>0 :10buffer<CR>
509
510 " Make last active window the only window. Similar to <C-W> o.
511 nnoremap <C-W>O <C-W>p<C-W>o
512
513 " Maps to change spell language between English and German and disable spell
514 " checking.
515 if exists('+spell')
516     nnoremap <silent> <Leader>sn :set nospell<CR>
517     nnoremap <silent> <Leader>se :set spell spelllang=en_us<CR>
518     nnoremap <silent> <Leader>sd :set spell spelllang=de_de<CR>
519 endif
520
521 " Add semicolon to the end of the line. Thanks to
522 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
523 " on Freenode for an improved version which doesn't clobber any marks.
524 nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
525
526 " * and # for selections in visual mode. Thanks to
527 " http://got-ravings.blogspot.com/2008/07/vim-pr0n-visual-search-mappings.html
528 " and all nerds involved (godlygeek, strull in #vim on Freenode).
529 if has('eval')
530     function! s:VSetSearch()
531         let l:temp = @@
532         normal! gvy
533         " Added \C to force 'noignorecase' while searching the current visual
534         " selection. I want to search for the exact string in this case.
535         let @/ = '\C' . '\V' . substitute(escape(@@, '\'), '\n', '\\n', 'g')
536         let @@ = l:temp
537     endfunction
538     vnoremap * :<C-U>call <SID>VSetSearch()<CR>//<CR>
539     vnoremap # :<C-U>call <SID>VSetSearch()<CR>??<CR>
540 endif
541
542 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
543 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
544 " mailing list for the commands.
545 if v:version < 700
546     cnoreabbrev W w
547     cnoreabbrev Wa wa
548     cnoreabbrev Wq wq
549     cnoreabbrev Wqa wqa
550 else
551     cnoreabbrev <expr> W
552         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
553     cnoreabbrev <expr> Wa
554         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wa' : 'Wa')
555     cnoreabbrev <expr> Wq
556         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
557     cnoreabbrev <expr> Wqa
558         \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
559 endif
560 " Also fix my typo with "Q".
561 if v:version < 700
562     cnoreabbrev Q q
563     cnoreabbrev Qa qa
564 else
565     cnoreabbrev <expr> Q
566         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
567     cnoreabbrev <expr> Qa
568         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
569 endif
570
571 " In case 'hlsearch' is used disable it with <C-L>. Thanks to frogonwheels and
572 " vimgor (bot) in #vim on Freenode (2010-03-30 05:58 CEST).
573 noremap <silent> <C-L> :nohlsearch<CR><C-L>
574
575 " <C-U> in insert mode deletes a lot, break undo sequence before deleting the
576 " line so the change can be undone. Thanks to the vimrc_example.vim file in
577 " Vim's source.
578 inoremap <C-U> <C-G>u<C-U>
579 " Same for <C-@> (insert previously inserted text and leave insert mode).
580 inoremap <C-@> <C-G>u<C-@>
581 " And for <C-A> (insert previously inserted text).
582 inoremap <C-A> <C-G>u<C-A>
583 " And for <C-W> (delete word before cursor).
584 inoremap <C-W> <C-G>u<C-W>
585
586 if has('eval')
587 " New text-objects ii and ai to work on text with the same indentation. Thanks
588 " to http://vim.wikia.com/index.php?title=Indent_text_object&oldid=27126
589 " (visited on 2011-11-19).
590     onoremap <silent> ai :<C-U>call <SID>IndTxtObj(0)<CR>
591     onoremap <silent> ii :<C-U>call <SID>IndTxtObj(1)<CR>
592     vnoremap <silent> ai :<C-U>call <SID>IndTxtObj(0)<CR><Esc>gv
593     vnoremap <silent> ii :<C-U>call <SID>IndTxtObj(1)<CR><Esc>gv
594
595     function! s:IndTxtObj(inner)
596         let curline = line(".")
597         let lastline = line("$")
598         let i = indent(line(".")) - &shiftwidth * (v:count1 - 1)
599         let i = i < 0 ? 0 : i
600         if getline(".") !~ "^\\s*$"
601             let p = line(".") - 1
602             let nextblank = getline(p) =~ "^\\s*$"
603             while p > 0
604                     \ && ((i == 0 && !nextblank)
605                         \ || (i > 0 && ((indent(p) >= i
606                             \ && !(nextblank && a:inner))
607                             \ || (nextblank && !a:inner))))
608                 -
609                 let p = line(".") - 1
610                 let nextblank = getline(p) =~ "^\\s*$"
611             endwhile
612             normal! 0V
613             call cursor(curline, 0)
614             let p = line(".") + 1
615             let nextblank = getline(p) =~ "^\\s*$"
616             while p <= lastline
617                     \ && ((i == 0 && !nextblank)
618                         \ || (i > 0 && ((indent(p) >= i
619                             \ && !(nextblank && a:inner))
620                             \ || (nextblank && !a:inner))))
621                 +
622                 let p = line(".") + 1
623                 let nextblank = getline(p) =~ "^\\s*$"
624             endwhile
625             normal! $
626         endif
627     endfunction
628 endif
629
630
631 " ABBREVIATIONS
632
633 " Fix some of my spelling mistakes (German).
634 inoreabbrev relle reelle
635 inoreabbrev reele reelle
636 " Fix some of my spelling mistakes (English).
637 inoreabbrev completly completely
638
639
640 " SYNTAX SETTINGS
641
642 " Activate syntax coloring.
643 if has('syntax')
644     syntax enable
645
646 " Don't highlight more than 500 columns as I normally don't have that long
647 " lines and they slow down syntax coloring. Thanks to Derek Wyatt
648 " (http://www.derekwyatt.org/vim/the-vimrc-file/).
649     if exists('+synmaxcol')
650         set synmaxcol=500
651     endif
652
653 " Use (limited) syntax based omni completion if no other omni completion is
654 " available. Taken from :help ft-syntax-omni.
655     if has('autocmd') && exists('+omnifunc')
656         augroup vimrc
657             autocmd FileType *
658                 \ if &omnifunc == '' |
659                 \     setlocal omnifunc=syntaxcomplete#Complete |
660                 \ endif
661         augroup END
662     endif
663
664 " Function to enable all custom highlights. Necessary as highlights are
665 " window-local and thus must be set for each new window.
666     function! s:CustomSyntaxHighlights()
667         " Not the first time called, nothing to do.
668         if exists('w:vimrc_syntax_run')
669             return
670         endif
671         let w:vimrc_syntax_run = 1
672
673 " Highlight lines longer than 78 characters. Thanks to Tony Mechelynck
674 " <antoine.mechelynck@gmail.com> from the Vim mailing list. It can easily be
675 " disabled when necessary with :2match (in Vim >= 700).
676         if !&diff && exists(':2match')
677             " Use ColorColumn for overlong lines if available and my color
678             " scheme is used.
679             if &t_Co == 256 && <SID>HasSyntaxGroup('ColorColumn')
680                 2match ColorColumn /\%>78v./
681             else
682                 2match Todo /\%>78v./
683             endif
684         elseif !&diff
685             match Todo /\%>78v./
686         endif
687
688         if exists('*matchadd')
689 " Highlight some important keywords in all documents.
690             let l:todos = ['TODO', 'XXX', 'FIXME',
691                          \ 'CHANGED', 'REMOVED', 'DELETED']
692             " Compatibility fix for Vim 6.4 which can't handle for in function
693             " (without function it's ignored).
694             execute '  for l:x in l:todos'
695                   \ '|     call matchadd("Todo", l:x)'
696                   \ '| endfor'
697
698 " Highlight Unicode whitespace which is no normal whitespace (0x20).
699             let l:spaces = ['00a0', '1680', '180e', '2000', '2001', '2002',
700                           \ '2003', '2004', '2005', '2006', '2007', '2008',
701                           \ '2009', '200a', '200b', '200c', '200d', '202f',
702                           \ '205f', '2060', '3000', 'feff']
703             " Compatibility fix for Vim 6.4. Escape \ inside the " string or
704             " it won't work!
705             execute '  for l:x in l:spaces'
706                   \ '|     call matchadd("Error", "\\%u" . l:x)'
707                   \ '| endfor'
708
709 " Special highlight for tabs to reduce their visibility in contrast to other
710 " SpecialKey characters (e.g. ^L).
711             if &t_Co == 256 && <SID>HasSyntaxGroup('specialKeyTab')
712                 call matchadd('specialKeyTab', '\t')
713             endif
714         endif
715     endfunction
716 " Enable highlights for the current and all new windows. Thanks to bairui in
717 " #vim on Freenode (2012-04-01 00:22 CEST) for the WinEnter suggestion.
718     call <SID>CustomSyntaxHighlights()
719     if has('autocmd')
720         augroup vimrc
721             autocmd WinEnter * call <SID>CustomSyntaxHighlights()
722         augroup END
723     endif
724
725 " Settings for specific filetypes.
726
727     " C
728     let g:c_no_if0_fold = 1 " fix weird double fold in #if0 in recent versions
729     " Haskell.
730     let g:hs_highlight_delimiters = 1
731     let g:hs_highlight_boolean = 1
732     let g:hs_highlight_types = 1
733     let g:hs_highlight_more_types = 1
734     " Perl.
735     let g:perl_fold = 1
736     let g:perl_fold_blocks = 1
737     let g:perl_nofold_packages = 1
738     let g:perl_include_pod = 1 " syntax coloring for PODs
739     " Python.
740     let g:python_highlight_all = 1
741     " Shell.
742     let g:sh_noisk = 1        " don't add . to 'iskeyword'
743     let g:sh_is_posix = 1     " POSIX shell (e.g. dash) is compatible enough
744     let g:sh_fold_enabled = 7 " functions (1), heredoc (2) and if/do/for (4)
745     " Vim.
746     let g:vimsyn_embed = 0      " don't highlight embedded languages
747     let g:vimsyn_folding = 'af' " folding for autogroups (a) and functions (f)
748     " XML.
749     let g:xml_syntax_folding = 1
750 endif
751
752
753 " PLUGIN SETTINGS
754
755 if has('eval')
756 " Use pathogen which allows one 'runtimepath' entry per plugin. This makes
757 " installing/removing/updating plugins simple. (Used for plugins with more
758 " than one file.) Ignore errors in case pathogen is not installed.
759     if v:version >= 700
760         silent! execute 'call pathogen#infect()'
761     endif
762
763 " Settings for securemodelines.
764     " Only allow items I need (also includes spl which is not enabled by
765     " default).
766     if v:version >= 700 " need lists
767         let g:secure_modelines_allowed_items = ['ft', 'spl', 'fdm',
768                                               \ 'sw', 'sts', 'noet']
769     endif
770
771 " Settings for the NERD commenter.
772     " Don't create any mappings I don't want to use.
773     let g:NERDCreateDefaultMappings = 0
774     " Map toggle comment.
775     nmap <Leader><Leader> <Plug>NERDCommenterToggle
776
777 " XPTemplate settings.
778     " Try to maintain snippet rendering even after editing outside of a
779     " snippet.
780     let g:xptemplate_strict = 0
781     " Don't complete any braces automatically.
782     let g:xptemplate_brace_complete = 0
783     " Only highlight the current placeholder.
784     let g:xptemplate_highlight = 'current'
785 endif
786
787
788 " AUTO COMMANDS
789
790 " Use a custom auto group to prevent problems when the vimrc files is sourced
791 " twice.
792 if has('autocmd')
793     augroup vimrc
794
795 " Go to last position of opened files. Taken from :help last-position-jump.
796         autocmd BufReadPost *
797             \ if line("'\"") > 1 && line("'\"") <= line('$') |
798             \     execute "normal! g'\"" |
799             \ endif
800 " But not for Git commits, go to beginning of the file.
801         autocmd BufReadPost COMMIT_EDITMSG normal! gg
802
803 " Make sure 'list' and 'number' is disabled in help files. This is necessary
804 " when switching to a help buffer which is in the background with :buffer as
805 " these options are local to windows (and not only to buffers). This happens
806 " because I often want to use only one window and thus the help buffer is in
807 " the background.
808         autocmd BufWinEnter *.txt
809             \ if &filetype == 'help' |
810             \     setlocal nolist |
811             \     setlocal nonumber |
812             \ endif
813
814 " Automatically disable 'paste' mode when leaving insert mode. Thanks to
815 " Raimondi in #vim on Freenode (2010-08-14 23:01 CEST). Very useful as I only
816 " want to paste once and then 'paste' gets automatically unset. InsertLeave
817 " doesn't exist in older Vims.
818         if exists('##InsertLeave')
819             autocmd InsertLeave * set nopaste
820         endif
821
822 " Write file when running :mak[e] before 'makeprg' is called. QuickFixCmdPre
823 " doesn't exist in older Vims.
824         if exists('##QuickFixCmdPre')
825             autocmd QuickFixCmdPre * write
826         endif
827
828 " Don't ignore case while in insert mode, but ignore case in all other modes.
829 " This causes <C-N>/<C-P> to honor the case and thus only complete matching
830 " capitalization. But while searching (/) 'ignorecase' is used.
831 " InsertEnter/InsertLeave doesn't exist in older Vims.
832         if exists('##InsertEnter') && exists('##InsertLeave')
833             autocmd InsertEnter * set noignorecase
834             autocmd InsertLeave * set   ignorecase
835         endif
836
837 " AFTER/FTPLUGIN AUTO COMMANDS
838
839 " Disable spell checking for files which don't need it.
840         autocmd FileType deb  setlocal nospell
841         autocmd FileType diff setlocal nospell
842         autocmd FileType tar  setlocal nospell
843 " Fix to allow Vim edit crontab files as crontab doesn't work with
844 " backupcopy=auto.
845         autocmd FileType crontab setlocal backupcopy=yes
846 " Don't use the modeline in git commits as the diff created by `git commit -v`
847 " may contain one which could change the filetype or other settings of the
848 " commit buffer. Also make sure we use only 72 characters per line which is
849 " the recommendation for git commit messages (http://tpope.net/node/106).
850         autocmd FileType gitcommit let g:secure_modelines_allowed_items = [] |
851                                  \ setlocal textwidth=72
852 " Use the same comment string as for Vim files in Vimperator files.
853         autocmd FileType vimperator setlocal commentstring=\"%s
854 " Use TeX compiler for (La)TeX files.
855         autocmd FileType tex compiler tex
856
857 " FTDETECT AUTO COMMANDS
858
859 " Recognize .md as markdown files (Vim default is .mkd).
860         autocmd BufRead,BufNewFile *.md set filetype=mkd
861 " Recognize .test as Tcl files.
862         autocmd BufRead,BufNewFile *.test set filetype=tcl
863
864 " OTHER AUTO COMMANDS
865
866 " Disable spell checking, displaying of list characters and long lines when
867 " viewing documentation.
868         autocmd BufReadPost /usr/share/doc/* setlocal nospell nolist | 2match
869
870 " Use diff filetype for mercurial patches in patch queue.
871         autocmd BufReadPost */.hg/patches/* set filetype=diff
872
873     augroup END
874 endif
875
876
877 " CUSTOM FUNCTIONS AND COMMANDS
878
879 if has('eval')
880 " Convenient command to see the difference between the current buffer and the
881 " file it was loaded from, thus the changes you made. Thanks to the
882 " vimrc_example.vim file in Vim's source. Modified to use the same filetype
883 " for the diffed file than the filetype for the original file.
884     if !exists(':DiffOrig')
885         command DiffOrig
886             \ let s:diff_orig_filetype = &filetype
887             \ | vertical new
888             \ | let &filetype = s:diff_orig_filetype
889             \ | unlet s:diff_orig_filetype
890             \ | set buftype=nofile
891             \ | read ++edit #
892             \ | 0d_
893             \ | diffthis
894             \ | wincmd p
895             \ | diffthis
896     endif
897 endif