1 " Vim main configuration file.
6 " Prevent editing as root as it may cause security problems. Use sudoedit
7 " instead. Thanks to godlygeek in #vim on Freenode (2009-06-19 22:21 CEST).
8 if $HOME == '/root' || exists('$SUDO_USER')
9 echomsg 'Running as root is forbidden! Use sudoedit.'
14 " Save 'runtimepath' in case it was changed by the system's configuration
17 let s:save_runtimepath = &runtimepath
19 " Reset all options (except 'term', 'lines' and 'columns'). This makes sure a
20 " system wide configuration file doesn't change default values.
22 " And restore it after all other options were reset.
24 let &runtimepath = s:save_runtimepath
27 " Make sure Vim (and not Vi) settings are used.
30 " Load my scripts from ~/.vim (my scripts) and ~/.vim/runtime (checkout of Vim
32 set runtimepath-=~/.vim
33 set runtimepath^=~/.vim,~/.vim/runtime
35 " Don't store swap files in the same directory as the edited file.
38 " Disable modelines as they may cause security problems. Instead use
39 " securemodelines (Vim script #1876).
42 " Complete to longest common string (list:longest) and then complete all full
43 " matches after another (full). Thanks to pbrisbin
44 " (http://pbrisbin.com:8080/dotfiles/vimrc).
45 set wildmode=list:longest,full
47 " Use strong encryption if possible, also used for swap/undo files.
49 set cryptmethod=blowfish
55 " Enable automatic file detection, plugin and indention support.
57 filetype plugin indent on
60 " Use UTF-8 file encoding for all files. Automatically recognize latin1 in
62 set fileencodings=utf-8,latin1
64 " Wrap text after 78 characters.
67 " Set tabs to 4 spaces, use softtabs.
71 " When < and > is used indent/deindent to the next 'shiftwidth' boundary.
73 " Use the default value for real tabs.
76 " Enable auto indention.
79 " When joining lines only add one space after a sentence.
82 " Allow backspacing over autoindent and line breaks.
83 set backspace=indent,eol
85 " Start a comment when hitting enter after a commented line (r) and when using
86 " o or O around a commented line (o).
88 " Don't break a line if was already longer then 'textwidth' when insert mode
92 " Allow virtual editing (cursor can be positioned anywhere, even when there is
93 " no character) in visual block mode.
96 " Already display matches while typing the search command. This makes spotting
100 " Activate syntax folding.
102 set foldmethod=syntax
104 set foldlevel=99 " no closed folds at default, 'foldenable' would disable
105 " folding which is not what I want
108 " Only check for case if the searched word contains a capital character.
112 " Activate spell checking, use English as default. Don't use spell checking
114 if v:version >= 700 && has('syntax') && !&diff
119 " Allow buffers with changes to be hidden. Very important for effective
120 " editing with multiple buffers.
126 " Use a dark background. Doesn't change the background color, only sets text
127 " colors for a dark terminal.
130 " Display line numbers.
132 " But use as little space as necessary for the numbers column. Thanks to James
133 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
137 " Display the ruler with current line/file position. If 'statusline' is used
138 " then this only affects <C-G>.
140 " Display partial commands in the status line.
143 " Don't redraw screen when executing macros; increases speed. Thanks to James
144 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
147 " Visualize the line the cursor is currently in.
152 " Display tabs, trailing space, non breakable spaces and long lines (when
153 " wrapping is disabled).
155 set listchars=trail:-,extends:>
157 set listchars+=nbsp:!
161 " Always display the status line even if there is only one window.
166 set statusline+=%02n: " buffer number
167 set statusline+=%f\ " path to current file in buffer
168 set statusline+=%h " [help] if buffer is help file
169 set statusline+=%w " [Preview] if buffer is preview buffer
170 set statusline+=%m " [+] if buffer was modified,
171 " [-] if 'modifiable' is off
172 set statusline+=%r " [RO] if buffer is read only
175 set statusline+=%= " right align
176 set statusline+=%-12.(%l,%c%V%)\ " line number (%l),
177 " column number (%c),
178 " virtual column number if different
180 set statusline+=%P " position in file in percent
184 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
186 " Easy way to exit insert mode.
188 " Also for command mode, thanks to http://github.com/mitechie/pyvim
192 " Disable arrow keys for all modes except command modes. Thanks to James Vega
193 " (http://git.jamessan.com/?p=etc/vim.git;a=summary).
202 " Also disable arrow keys in command mode, use <C-P>/<C-N> as replacement (see
209 " Use Ctrl-P/Ctrl-N as replacement for <Up>/<Down> in command mode. Thanks to
210 " abstrakt and grayw in #vim on Freenode (2010-04-12 21:20 CEST).
212 cnoremap <C-N> <Down>
214 " Use <Space> to move down a page and - to move up one like in mutt.
215 nnoremap <Space> <C-F>
218 " Behave like 'scrolloff' but only while searching. Thanks to "Benjamin R.
219 " Haskell" <vim@benizi.com> from the Vim mailing list (2010-10-26).
223 " Go to next and previous buffer. Thanks to elik in #vim on Freenode
224 " (2010-05-16 18:38 CEST) for this idea.
225 nnoremap <silent> gb :bnext<CR>
226 nnoremap <silent> gB :bprev<CR>
228 " Fast access to buffers.
229 nnoremap <Leader>1 :1b<CR>
230 nnoremap <Leader>2 :2b<CR>
231 nnoremap <Leader>3 :3b<CR>
232 nnoremap <Leader>4 :4b<CR>
233 nnoremap <Leader>5 :5b<CR>
234 nnoremap <Leader>6 :6b<CR>
235 nnoremap <Leader>7 :7b<CR>
236 nnoremap <Leader>8 :8b<CR>
237 nnoremap <Leader>9 :9b<CR>
238 nnoremap <Leader>0 :10b<CR>
240 " Make last active window the only window. Similar to <C-w> o.
241 nnoremap <C-W>O <C-W>p<C-W>o
243 " Maps to change spell language between English and German and disable spell
246 noremap <Leader>sn :set nospell<CR>
247 noremap <Leader>se :set spell spelllang=en_us<CR>
248 noremap <Leader>sd :set spell spelllang=de_de<CR>
251 " Add semicolon to the end of the line. Thanks to
252 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
253 " on Freenode for an improved version which doesn't clobber any marks.
254 nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
256 " * and # for selections in visual mode. Thanks to
257 " http://got-ravings.blogspot.com/2008/07/vim-pr0n-visual-search-mappings.html
258 " and all nerds involved (godlygeek, strull in #vim on Freenode).
260 function! s:VSetSearch()
263 let @/ = '\V' . substitute(escape(@@, '\'), '\n', '\\n', 'g')
266 vnoremap * :<C-U>call <SID>VSetSearch()<CR>//<CR>
267 vnoremap # :<C-U>call <SID>VSetSearch()<CR>??<CR>
270 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
271 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
272 " mailing list for the commands.
280 \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
281 cnoreabbrev <expr> Wa
282 \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wa' : 'Wa')
283 cnoreabbrev <expr> Wq
284 \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
285 cnoreabbrev <expr> Wqa
286 \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
288 " Also fix my typo with "Q".
294 \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
295 cnoreabbrev <expr> Qa
296 \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
299 " Make sure xa0 (alt + space) is automatically changed to a normal whitespace
300 " if pressed accidentally while in insert mode (happens on Mac when alt
301 " doesn't send escape). filereadable() is necessary for Leopard were 'mac' is
302 " no longer set on the console.
303 if has('mac') || filereadable('/Users/.localized')
304 inoremap <Char-0xa0> <Space>
307 " Disable Apple style movements in MacVim.
308 if has('gui_macvim') && has('eval')
309 let macvim_skip_cmd_opt_movement = 1
315 " Activate syntax coloring.
319 " Don't highlight more than 500 columns as I normally don't have that long
320 " lines and they slow down syntax coloring. Thanks to Derek Wyatt
321 " (http://www.derekwyatt.org/vim/the-vimrc-file/).
324 " Highlight lines longer than 78 characters. Thanks to Tony Mechelynck
325 " <antoine.mechelynck@gmail.com> from the Vim mailing list. It can easily be
326 " disabled when necessary with :2match (in Vim >= 700).
328 2match Todo /\%>78v./
333 " Highlight TODO, FIXME, CHANGED and XXX in all documents.
334 if v:version > 701 || (v:version == 701 && has('patch42'))
335 call matchadd('Todo', '\(TODO\|FIXME\|CHANGED\|XXX\)')
342 " Settings for the NERD commenter.
343 " Don't create any mappings I don't want to use.
345 let NERDCreateDefaultMappings = 0
347 " Map toggle comment.
348 map <Leader><Leader> <Plug>NERDCommenterToggle
350 " XPTemplate settings.
352 " Try to maintain snippet rendering even after editing outside of a
354 let g:xptemplate_strict = 0
355 " Don't complete any braces automatically.
356 let g:xptemplate_brace_complete = 0
357 " Only highlight the current placeholder.
358 let g:xptemplate_highlight = 'current'
364 " Use a custom auto group to prevent problems when the vimrc files is sourced
370 " Go to last position of opened files. Taken from :help last-position-jump.
371 autocmd BufReadPost *
372 \ if line("'\"") > 1 && line("'\"") <= line("$") |
373 \ execute "normal! g'\"" |
375 " But not for Git commits, go to beginning of the file.
376 autocmd BufReadPost COMMIT_EDITMSG normal! gg
378 " Make sure 'list' and 'number' is disabled in help files. This is necessary
379 " when switching to a help buffer which is in the background with :buffer as
380 " these options are local to windows (and not only to buffers). This happens
381 " because I often want to use only one window and thus the help buffer is in
383 autocmd BufWinEnter *.txt
384 \ if &filetype == 'help' |
386 \ setlocal nonumber |
389 " Automatically disable 'paste' mode when leaving insert mode. Thanks to
390 " Raimondi in #vim on Freenode (2010-08-14 23:01 CEST). Very useful as I only
391 " want to paste once and then 'paste' gets automatically unset.
392 autocmd InsertLeave * set nopaste
394 " AFTER/FTPLUGIN AUTO COMMANDS
396 " Disable spell checking for files which don't need it.
397 autocmd FileType deb setlocal nospell
398 autocmd FileType diff setlocal nospell
399 autocmd FileType tar setlocal nospell
400 " Fix to allow Vim edit crontab files as crontab doesn't work with
402 autocmd FileType crontab setlocal backupcopy=yes
403 " Don't use the modeline in git commits as the diff created by `git commit -v`
404 " may contain one which could change the filetype or other settings of the
405 " commit buffer. Also make sure we use only 72 characters per line which is
406 " the recommendation for git commit messages (http://tpope.net/node/106).
407 autocmd FileType gitcommit let g:secure_modelines_allowed_items = [] |
408 \ setlocal textwidth=72
409 " Allow folding in perl.
410 autocmd FileType perl let perl_fold = 1 |
411 \ let perl_fold_blocks = 1
412 " Use the same comment string as for Vim files in Vimperator files.
413 autocmd FileType vimperator setlocal commentstring=\"%s
415 " FTDETECT AUTO COMMANDS
417 " Recognize .md as markdown files (Vim default is .mkd).
418 autocmd BufRead,BufNewFile *.md set filetype=mkd
419 " Recognize .test as Tcl files.
420 autocmd BufRead,BufNewFile *.test set filetype=tcl
422 " OTHER AUTO COMMANDS
424 " Disable spell checking, displaying of list characters and long lines when
425 " viewing documentation.
426 autocmd BufReadPost /usr/share/doc/* setlocal nospell nolist | 2match
428 " Use diff filetype for mercurial patches in patch queue.
429 autocmd BufReadPost */.hg/patches/* set filetype=diff