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