]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
vimrc: Improve 'wildmode'.
[config/dotfiles.git] / vimrc
1 " Vim main configuration file.
2
3
4 " EDITOR SETTINGS
5
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.'
10     qall
11 endif
12
13
14 " Save 'runtimepath' in case it was changed by the system's configuration
15 " files.
16 if has('eval')
17     let s:save_runtimepath = &runtimepath
18 endif
19 " Reset all options (except 'term', 'lines' and 'columns'). This makes sure a
20 " system wide configuration file doesn't change default values.
21 set all&
22 " And restore it after all other options were reset.
23 if has('eval')
24     let &runtimepath = s:save_runtimepath
25 endif
26
27 " Make sure Vim (and not Vi) settings are used.
28 set nocompatible
29
30 " Load my scripts from ~/.vim (my scripts) and ~/.vim/runtime (checkout of Vim
31 " runtime files).
32 set runtimepath-=~/.vim
33 set runtimepath^=~/.vim,~/.vim/runtime
34
35 " Don't store swap files in the same directory as the edited file.
36 set directory-=.
37
38 " Disable modelines as they may cause security problems. Instead use
39 " securemodelines (Vim script #1876).
40 set nomodeline
41
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
46
47 " Use strong encryption if possible, also used for swap/undo files.
48 if v:version >= 703
49     set cryptmethod=blowfish
50 endif
51
52
53 " EDIT SETTINGS
54
55 " Enable automatic file detection, plugin and indention support.
56 if has('autocmd')
57     filetype plugin indent on
58 endif
59
60 " Use UTF-8 file encoding for all files. Automatically recognize latin1 in
61 " existing files.
62 set fileencodings=utf-8,latin1
63
64 " Wrap text after 78 characters.
65 set textwidth=78
66
67 " Set tabs to 4 spaces, use softtabs.
68 set shiftwidth=4
69 set softtabstop=4
70 set expandtab
71 " When < and > is used indent/deindent to the next 'shiftwidth' boundary.
72 set shiftround
73 " Use the default value for real tabs.
74 set tabstop=8
75
76 " Enable auto indention.
77 set autoindent
78
79 " When joining lines only add one space after a sentence.
80 set nojoinspaces
81
82 " Allow backspacing over autoindent and line breaks.
83 set backspace=indent,eol
84
85 " Start a comment when hitting enter after a commented line (r) and when using
86 " o or O around a commented line (o).
87 set formatoptions+=ro
88 " Don't break a line if was already longer then 'textwidth' when insert mode
89 " started.
90 set formatoptions+=l
91
92 " Allow virtual editing (cursor can be positioned anywhere, even when there is
93 " no character) in visual block mode.
94 set virtualedit=block
95
96 " Already display matches while typing the search command. This makes spotting
97 " errors easy.
98 set incsearch
99
100 " Activate syntax folding.
101 if has('folding')
102     set foldmethod=syntax
103     set foldcolumn=2
104     set foldlevel=99 " no closed folds at default, 'foldenable' would disable
105                      " folding which is not what I want
106 endif
107
108 " Only check for case if the searched word contains a capital character.
109 set ignorecase
110 set smartcase
111
112 " Activate spell checking, use English as default. Don't use spell checking
113 " when diffing.
114 if v:version >= 700 && has('syntax') && !&diff
115     set spell
116     set spelllang=en_us
117 endif
118
119 " Allow buffers with changes to be hidden. Very important for effective
120 " editing with multiple buffers.
121 set hidden
122
123
124 " DISPLAY SETTINGS
125
126 " Use a dark background. Doesn't change the background color, only sets text
127 " colors for a dark terminal.
128 set background=dark
129
130 " Display line numbers.
131 set number
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).
134 if v:version >= 700
135     set numberwidth=1
136 endif
137 " Display the ruler with current line/file position. If 'statusline' is used
138 " then this only affects <C-G>.
139 set ruler
140 " Display partial commands in the status line.
141 set showcmd
142
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).
145 set lazyredraw
146
147 " Visualize the line the cursor is currently in.
148 if v:version >= 700
149     set cursorline
150 endif
151
152 " Display tabs, trailing space, non breakable spaces and long lines (when
153 " wrapping is disabled).
154 set list
155 set listchars=trail:-,extends:>
156 if v:version >= 700
157     set listchars+=nbsp:!
158 endif
159
160 if has('statusline')
161     " Always display the status line even if there is only one window.
162     set laststatus=2
163
164     set statusline=
165     " on the left
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
173
174     " on the right
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
179                                       "                       than %c (%V)
180     set statusline+=%P                " position in file in percent
181 endif
182
183
184 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
185
186 " Easy way to exit insert mode.
187 inoremap jj <Esc>
188 " Also for command mode, thanks to http://github.com/mitechie/pyvim
189 " (2010-10-15).
190 cnoremap jj <C-C>
191
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).
194 map <Right>  <Nop>
195 map <Left>   <Nop>
196 map <Up>     <Nop>
197 map <Down>   <Nop>
198 imap <Right> <Nop>
199 imap <Left>  <Nop>
200 imap <Up>    <Nop>
201 imap <Down>  <Nop>
202 " Also disable arrow keys in command mode, use <C-P>/<C-N> as replacement (see
203 " below).
204 cmap <Up>    <Nop>
205 cmap <Down>  <Nop>
206 cmap <Right> <Nop>
207 cmap <Left>  <Nop>
208
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).
211 cnoremap <C-P> <Up>
212 cnoremap <C-N> <Down>
213
214 " Use <Space> to move down a page and - to move up one like in mutt.
215 nnoremap <Space> <C-F>
216 nnoremap - <C-B>
217
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).
220 nnoremap n nzv3j3k
221 nnoremap N Nzv3k3j
222
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>
227
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>
239
240 " Make last active window the only window. Similar to <C-w> o.
241 nnoremap <C-W>O <C-W>p<C-W>o
242
243 " Maps to change spell language between English and German and disable spell
244 " checking.
245 if v:version >= 700
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>
249 endif
250
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>
255
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).
259 if has('eval')
260     function! s:VSetSearch()
261         let temp = @@
262         normal! gvy
263         let @/ = '\V' . substitute(escape(@@, '\'), '\n', '\\n', 'g')
264         let @@ = temp
265     endfunction
266     vnoremap * :<C-U>call <SID>VSetSearch()<CR>//<CR>
267     vnoremap # :<C-U>call <SID>VSetSearch()<CR>??<CR>
268 endif
269
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.
273 if v:version < 700
274     cnoreabbrev W w
275     cnoreabbrev Wa wa
276     cnoreabbrev Wq wq
277     cnoreabbrev Wqa wqa
278 else
279     cnoreabbrev <expr> W
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')
287 endif
288 " Also fix my typo with "Q".
289 if v:version < 700
290     cnoreabbrev Q q
291     cnoreabbrev Qa qa
292 else
293     cnoreabbrev <expr> Q
294         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
295     cnoreabbrev <expr> Qa
296         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
297 endif
298
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>
305 endif
306
307 " Disable Apple style movements in MacVim.
308 if has('gui_macvim') && has('eval')
309     let macvim_skip_cmd_opt_movement = 1
310 endif
311
312
313 " SYNTAX SETTINGS
314
315 " Activate syntax coloring.
316 if has('syntax')
317     syntax enable
318
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/).
322     set synmaxcol=500
323
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).
327     if v:version >= 700
328         2match Todo /\%>78v./
329     else
330         match Todo /\%>78v./
331     endif
332
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\)')
336     endif
337 endif
338
339
340 " PLUGIN SETTINGS
341
342 " Settings for the NERD commenter.
343 " Don't create any mappings I don't want to use.
344 if has('eval')
345     let NERDCreateDefaultMappings = 0
346 endif
347 " Map toggle comment.
348 map <Leader><Leader> <Plug>NERDCommenterToggle
349
350 " XPTemplate settings.
351 if has('eval')
352     " Try to maintain snippet rendering even after editing outside of a
353     " snippet.
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'
359 endif
360
361
362 " AUTO COMMANDS
363
364 " Use a custom auto group to prevent problems when the vimrc files is sourced
365 " twice.
366 if has('autocmd')
367     augroup vimrc
368         autocmd!
369
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'\"" |
374             \ endif
375 " But not for Git commits, go to beginning of the file.
376         autocmd BufReadPost COMMIT_EDITMSG normal! gg
377
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
382 " the background.
383         autocmd BufWinEnter *.txt
384             \ if &filetype == 'help' |
385             \     setlocal nolist |
386             \     setlocal nonumber |
387             \ endif
388
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
393
394 " AFTER/FTPLUGIN AUTO COMMANDS
395
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
401 " backupcopy=auto.
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
414
415 " FTDETECT AUTO COMMANDS
416
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
421
422 " OTHER AUTO COMMANDS
423
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
427
428 " Use diff filetype for mercurial patches in patch queue.
429         autocmd BufReadPost */.hg/patches/* set filetype=diff
430
431     augroup END
432 endif