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 " Increase history of executed commands (:).
50 " Increase number of possible undos.
53 " Use strong encryption if possible, also used for swap/undo files.
55 set cryptmethod=blowfish
61 " Enable automatic file detection, plugin and indention support.
63 filetype plugin indent on
66 " Use UTF-8 file encoding for all files. Automatically recognize latin1 in
68 set fileencodings=utf-8,latin1
70 " Wrap text after 78 characters.
73 " Set tabs to 4 spaces, use softtabs.
77 " When < and > is used indent/deindent to the next 'shiftwidth' boundary.
79 " Use the default value for real tabs.
82 " Enable auto indention.
85 " When joining lines only add one space after a sentence.
88 " Allow backspacing over autoindent and line breaks.
89 set backspace=indent,eol
91 " Start a comment when hitting enter after a commented line (r) and when using
92 " o or O around a commented line (o).
94 " Don't break a line if was already longer then 'textwidth' when insert mode
98 " Allow virtual editing (cursor can be positioned anywhere, even when there is
99 " no character) in visual block mode.
100 set virtualedit=block
102 " Already display matches while typing the search command. This makes spotting
106 " Activate syntax folding.
108 set foldmethod=syntax
110 set foldlevel=99 " no closed folds at default, 'foldenable' would disable
111 " folding which is not what I want
114 " Only check for case if the searched word contains a capital character.
118 " Activate spell checking, use English as default. Don't use spell checking
120 if v:version >= 700 && has('syntax') && !&diff
125 " Allow buffers with changes to be hidden. Very important for effective
126 " editing with multiple buffers.
132 " Use a dark background. Doesn't change the background color, only sets text
133 " colors for a dark terminal.
136 " Display line numbers.
138 " But use as little space as necessary for the numbers column. Thanks to James
139 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
143 " Display the ruler with current line/file position. If 'statusline' is used
144 " then this only affects <C-G>.
146 " Display partial commands in the status line.
149 " Don't redraw screen when executing macros; increases speed. Thanks to James
150 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
153 " Visualize the line the cursor is currently in.
158 " Display tabs, trailing space, non breakable spaces and long lines (when
159 " wrapping is disabled).
161 set listchars=trail:-,extends:>
163 set listchars+=nbsp:!
167 " Always display the status line even if there is only one window.
172 set statusline+=%02n: " buffer number
173 set statusline+=%f\ " path to current file in buffer
174 set statusline+=%h " [help] if buffer is help file
175 set statusline+=%w " [Preview] if buffer is preview buffer
176 set statusline+=%m " [+] if buffer was modified,
177 " [-] if 'modifiable' is off
178 set statusline+=%r " [RO] if buffer is read only
181 set statusline+=%= " right align
182 set statusline+=0x%-8B\ " current character under cursor as hex
183 set statusline+=%-12.(%l,%c%V%)\ " line number (%l),
184 " column number (%c),
185 " virtual column number if different
187 set statusline+=%P " position in file in percent
191 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
193 " Easy way to exit insert mode.
195 " Also for command mode, thanks to http://github.com/mitechie/pyvim
199 " Disable arrow keys for all modes except command modes. Thanks to James Vega
200 " (http://git.jamessan.com/?p=etc/vim.git;a=summary).
209 " Also disable arrow keys in command mode, use <C-P>/<C-N> as replacement (see
216 " Use Ctrl-P/Ctrl-N as replacement for <Up>/<Down> in command mode. Thanks to
217 " abstrakt and grayw in #vim on Freenode (2010-04-12 21:20 CEST).
219 cnoremap <C-N> <Down>
221 " Use <Space> to move down a page and - to move up one like in mutt.
222 nnoremap <Space> <C-F>
225 " Behave like 'scrolloff' but only while searching. Thanks to "Benjamin R.
226 " Haskell" <vim@benizi.com> from the Vim mailing list (2010-10-26).
230 " Go to next and previous buffer. Thanks to elik in #vim on Freenode
231 " (2010-05-16 18:38 CEST) for this idea.
232 nnoremap <silent> gb :bnext<CR>
233 nnoremap <silent> gB :bprev<CR>
235 " Fast access to buffers.
236 nnoremap <Leader>1 :1b<CR>
237 nnoremap <Leader>2 :2b<CR>
238 nnoremap <Leader>3 :3b<CR>
239 nnoremap <Leader>4 :4b<CR>
240 nnoremap <Leader>5 :5b<CR>
241 nnoremap <Leader>6 :6b<CR>
242 nnoremap <Leader>7 :7b<CR>
243 nnoremap <Leader>8 :8b<CR>
244 nnoremap <Leader>9 :9b<CR>
245 nnoremap <Leader>0 :10b<CR>
247 " Make last active window the only window. Similar to <C-w> o.
248 nnoremap <C-W>O <C-W>p<C-W>o
250 " Maps to change spell language between English and German and disable spell
253 noremap <Leader>sn :set nospell<CR>
254 noremap <Leader>se :set spell spelllang=en_us<CR>
255 noremap <Leader>sd :set spell spelllang=de_de<CR>
258 " Add semicolon to the end of the line. Thanks to
259 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
260 " on Freenode for an improved version which doesn't clobber any marks.
261 nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
263 " * and # for selections in visual mode. Thanks to
264 " http://got-ravings.blogspot.com/2008/07/vim-pr0n-visual-search-mappings.html
265 " and all nerds involved (godlygeek, strull in #vim on Freenode).
267 function! s:VSetSearch()
270 let @/ = '\V' . substitute(escape(@@, '\'), '\n', '\\n', 'g')
273 vnoremap * :<C-U>call <SID>VSetSearch()<CR>//<CR>
274 vnoremap # :<C-U>call <SID>VSetSearch()<CR>??<CR>
277 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
278 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
279 " mailing list for the commands.
287 \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
288 cnoreabbrev <expr> Wa
289 \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wa' : 'Wa')
290 cnoreabbrev <expr> Wq
291 \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
292 cnoreabbrev <expr> Wqa
293 \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
295 " Also fix my typo with "Q".
301 \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
302 cnoreabbrev <expr> Qa
303 \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
306 " Make sure xa0 (alt + space) is automatically changed to a normal whitespace
307 " if pressed accidentally while in insert mode (happens on Mac when alt
308 " doesn't send escape). filereadable() is necessary for Leopard were 'mac' is
309 " no longer set on the console.
310 if has('mac') || filereadable('/Users/.localized')
311 inoremap <Char-0xa0> <Space>
314 " Disable Apple style movements in MacVim.
315 if has('gui_macvim') && has('eval')
316 let macvim_skip_cmd_opt_movement = 1
319 " In case 'hlsearch' is used disable it with <C-L>. Thanks to frogonwheels and
320 " vimgor (bot) in #vim on Freenode (2010-03-30 05:58 CEST).
321 noremap <silent> <C-L> :nohlsearch<CR><C-L>
326 " Fix some of my spelling mistakes.
333 " Activate syntax coloring.
337 " Don't highlight more than 500 columns as I normally don't have that long
338 " lines and they slow down syntax coloring. Thanks to Derek Wyatt
339 " (http://www.derekwyatt.org/vim/the-vimrc-file/).
342 " Highlight lines longer than 78 characters. Thanks to Tony Mechelynck
343 " <antoine.mechelynck@gmail.com> from the Vim mailing list. It can easily be
344 " disabled when necessary with :2match (in Vim >= 700).
346 2match Todo /\%>78v./
351 " Highlight TODO, FIXME, CHANGED and XXX in all documents.
352 if v:version > 701 || (v:version == 701 && has('patch42'))
353 call matchadd('Todo', '\(TODO\|FIXME\|CHANGED\|XXX\)')
360 " Settings for the NERD commenter.
361 " Don't create any mappings I don't want to use.
363 let NERDCreateDefaultMappings = 0
365 " Map toggle comment.
366 map <Leader><Leader> <Plug>NERDCommenterToggle
368 " XPTemplate settings.
370 " Try to maintain snippet rendering even after editing outside of a
372 let g:xptemplate_strict = 0
373 " Don't complete any braces automatically.
374 let g:xptemplate_brace_complete = 0
375 " Only highlight the current placeholder.
376 let g:xptemplate_highlight = 'current'
382 " Use a custom auto group to prevent problems when the vimrc files is sourced
388 " Go to last position of opened files. Taken from :help last-position-jump.
389 autocmd BufReadPost *
390 \ if line("'\"") > 1 && line("'\"") <= line("$") |
391 \ execute "normal! g'\"" |
393 " But not for Git commits, go to beginning of the file.
394 autocmd BufReadPost COMMIT_EDITMSG normal! gg
396 " Make sure 'list' and 'number' is disabled in help files. This is necessary
397 " when switching to a help buffer which is in the background with :buffer as
398 " these options are local to windows (and not only to buffers). This happens
399 " because I often want to use only one window and thus the help buffer is in
401 autocmd BufWinEnter *.txt
402 \ if &filetype == 'help' |
404 \ setlocal nonumber |
407 " Automatically disable 'paste' mode when leaving insert mode. Thanks to
408 " Raimondi in #vim on Freenode (2010-08-14 23:01 CEST). Very useful as I only
409 " want to paste once and then 'paste' gets automatically unset.
410 autocmd InsertLeave * set nopaste
412 " AFTER/FTPLUGIN AUTO COMMANDS
414 " Disable spell checking for files which don't need it.
415 autocmd FileType deb setlocal nospell
416 autocmd FileType diff setlocal nospell
417 autocmd FileType tar setlocal nospell
418 " Fix to allow Vim edit crontab files as crontab doesn't work with
420 autocmd FileType crontab setlocal backupcopy=yes
421 " Don't use the modeline in git commits as the diff created by `git commit -v`
422 " may contain one which could change the filetype or other settings of the
423 " commit buffer. Also make sure we use only 72 characters per line which is
424 " the recommendation for git commit messages (http://tpope.net/node/106).
425 autocmd FileType gitcommit let g:secure_modelines_allowed_items = [] |
426 \ setlocal textwidth=72
427 " Allow folding in perl.
428 autocmd FileType perl let perl_fold = 1 |
429 \ let perl_fold_blocks = 1
430 " Use the same comment string as for Vim files in Vimperator files.
431 autocmd FileType vimperator setlocal commentstring=\"%s
433 " FTDETECT AUTO COMMANDS
435 " Recognize .md as markdown files (Vim default is .mkd).
436 autocmd BufRead,BufNewFile *.md set filetype=mkd
437 " Recognize .test as Tcl files.
438 autocmd BufRead,BufNewFile *.test set filetype=tcl
440 " OTHER AUTO COMMANDS
442 " Disable spell checking, displaying of list characters and long lines when
443 " viewing documentation.
444 autocmd BufReadPost /usr/share/doc/* setlocal nospell nolist | 2match
446 " Use diff filetype for mercurial patches in patch queue.
447 autocmd BufReadPost */.hg/patches/* set filetype=diff