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