]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
vimrc: Increase history of executed commands and count of undos.
[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 " Increase history of executed commands (:).
48 set history=1000
49
50 " Increase number of possible undos.
51 set undolevels=1000
52
53 " Use strong encryption if possible, also used for swap/undo files.
54 if v:version >= 703
55     set cryptmethod=blowfish
56 endif
57
58
59 " EDIT SETTINGS
60
61 " Enable automatic file detection, plugin and indention support.
62 if has('autocmd')
63     filetype plugin indent on
64 endif
65
66 " Use UTF-8 file encoding for all files. Automatically recognize latin1 in
67 " existing files.
68 set fileencodings=utf-8,latin1
69
70 " Wrap text after 78 characters.
71 set textwidth=78
72
73 " Set tabs to 4 spaces, use softtabs.
74 set shiftwidth=4
75 set softtabstop=4
76 set expandtab
77 " When < and > is used indent/deindent to the next 'shiftwidth' boundary.
78 set shiftround
79 " Use the default value for real tabs.
80 set tabstop=8
81
82 " Enable auto indention.
83 set autoindent
84
85 " When joining lines only add one space after a sentence.
86 set nojoinspaces
87
88 " Allow backspacing over autoindent and line breaks.
89 set backspace=indent,eol
90
91 " Start a comment when hitting enter after a commented line (r) and when using
92 " o or O around a commented line (o).
93 set formatoptions+=ro
94 " Don't break a line if was already longer then 'textwidth' when insert mode
95 " started.
96 set formatoptions+=l
97
98 " Allow virtual editing (cursor can be positioned anywhere, even when there is
99 " no character) in visual block mode.
100 set virtualedit=block
101
102 " Already display matches while typing the search command. This makes spotting
103 " errors easy.
104 set incsearch
105
106 " Activate syntax folding.
107 if has('folding')
108     set foldmethod=syntax
109     set foldcolumn=2
110     set foldlevel=99 " no closed folds at default, 'foldenable' would disable
111                      " folding which is not what I want
112 endif
113
114 " Only check for case if the searched word contains a capital character.
115 set ignorecase
116 set smartcase
117
118 " Activate spell checking, use English as default. Don't use spell checking
119 " when diffing.
120 if v:version >= 700 && has('syntax') && !&diff
121     set spell
122     set spelllang=en_us
123 endif
124
125 " Allow buffers with changes to be hidden. Very important for effective
126 " editing with multiple buffers.
127 set hidden
128
129
130 " DISPLAY SETTINGS
131
132 " Use a dark background. Doesn't change the background color, only sets text
133 " colors for a dark terminal.
134 set background=dark
135
136 " Display line numbers.
137 set number
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).
140 if v:version >= 700
141     set numberwidth=1
142 endif
143 " Display the ruler with current line/file position. If 'statusline' is used
144 " then this only affects <C-G>.
145 set ruler
146 " Display partial commands in the status line.
147 set showcmd
148
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).
151 set lazyredraw
152
153 " Visualize the line the cursor is currently in.
154 if v:version >= 700
155     set cursorline
156 endif
157
158 " Display tabs, trailing space, non breakable spaces and long lines (when
159 " wrapping is disabled).
160 set list
161 set listchars=trail:-,extends:>
162 if v:version >= 700
163     set listchars+=nbsp:!
164 endif
165
166 if has('statusline')
167     " Always display the status line even if there is only one window.
168     set laststatus=2
169
170     set statusline=
171     " on the left
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
179
180     " on the right
181     set statusline+=%=                " right align
182     set statusline+=%-12.(%l,%c%V%)\  " line number (%l),
183                                       " column number (%c),
184                                       " virtual column number if different
185                                       "                       than %c (%V)
186     set statusline+=%P                " position in file in percent
187 endif
188
189
190 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
191
192 " Easy way to exit insert mode.
193 inoremap jj <Esc>
194 " Also for command mode, thanks to http://github.com/mitechie/pyvim
195 " (2010-10-15).
196 cnoremap jj <C-C>
197
198 " Disable arrow keys for all modes except command modes. Thanks to James Vega
199 " (http://git.jamessan.com/?p=etc/vim.git;a=summary).
200 map <Right>  <Nop>
201 map <Left>   <Nop>
202 map <Up>     <Nop>
203 map <Down>   <Nop>
204 imap <Right> <Nop>
205 imap <Left>  <Nop>
206 imap <Up>    <Nop>
207 imap <Down>  <Nop>
208 " Also disable arrow keys in command mode, use <C-P>/<C-N> as replacement (see
209 " below).
210 cmap <Up>    <Nop>
211 cmap <Down>  <Nop>
212 cmap <Right> <Nop>
213 cmap <Left>  <Nop>
214
215 " Use Ctrl-P/Ctrl-N as replacement for <Up>/<Down> in command mode. Thanks to
216 " abstrakt and grayw in #vim on Freenode (2010-04-12 21:20 CEST).
217 cnoremap <C-P> <Up>
218 cnoremap <C-N> <Down>
219
220 " Use <Space> to move down a page and - to move up one like in mutt.
221 nnoremap <Space> <C-F>
222 nnoremap - <C-B>
223
224 " Behave like 'scrolloff' but only while searching. Thanks to "Benjamin R.
225 " Haskell" <vim@benizi.com> from the Vim mailing list (2010-10-26).
226 nnoremap n nzv3j3k
227 nnoremap N Nzv3k3j
228
229 " Go to next and previous buffer. Thanks to elik in #vim on Freenode
230 " (2010-05-16 18:38 CEST) for this idea.
231 nnoremap <silent> gb :bnext<CR>
232 nnoremap <silent> gB :bprev<CR>
233
234 " Fast access to buffers.
235 nnoremap <Leader>1 :1b<CR>
236 nnoremap <Leader>2 :2b<CR>
237 nnoremap <Leader>3 :3b<CR>
238 nnoremap <Leader>4 :4b<CR>
239 nnoremap <Leader>5 :5b<CR>
240 nnoremap <Leader>6 :6b<CR>
241 nnoremap <Leader>7 :7b<CR>
242 nnoremap <Leader>8 :8b<CR>
243 nnoremap <Leader>9 :9b<CR>
244 nnoremap <Leader>0 :10b<CR>
245
246 " Make last active window the only window. Similar to <C-w> o.
247 nnoremap <C-W>O <C-W>p<C-W>o
248
249 " Maps to change spell language between English and German and disable spell
250 " checking.
251 if v:version >= 700
252     noremap <Leader>sn :set nospell<CR>
253     noremap <Leader>se :set spell spelllang=en_us<CR>
254     noremap <Leader>sd :set spell spelllang=de_de<CR>
255 endif
256
257 " Add semicolon to the end of the line. Thanks to
258 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
259 " on Freenode for an improved version which doesn't clobber any marks.
260 nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
261
262 " * and # for selections in visual mode. Thanks to
263 " http://got-ravings.blogspot.com/2008/07/vim-pr0n-visual-search-mappings.html
264 " and all nerds involved (godlygeek, strull in #vim on Freenode).
265 if has('eval')
266     function! s:VSetSearch()
267         let temp = @@
268         normal! gvy
269         let @/ = '\V' . substitute(escape(@@, '\'), '\n', '\\n', 'g')
270         let @@ = temp
271     endfunction
272     vnoremap * :<C-U>call <SID>VSetSearch()<CR>//<CR>
273     vnoremap # :<C-U>call <SID>VSetSearch()<CR>??<CR>
274 endif
275
276 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
277 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
278 " mailing list for the commands.
279 if v:version < 700
280     cnoreabbrev W w
281     cnoreabbrev Wa wa
282     cnoreabbrev Wq wq
283     cnoreabbrev Wqa wqa
284 else
285     cnoreabbrev <expr> W
286         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
287     cnoreabbrev <expr> Wa
288         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wa' : 'Wa')
289     cnoreabbrev <expr> Wq
290         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
291     cnoreabbrev <expr> Wqa
292         \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
293 endif
294 " Also fix my typo with "Q".
295 if v:version < 700
296     cnoreabbrev Q q
297     cnoreabbrev Qa qa
298 else
299     cnoreabbrev <expr> Q
300         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
301     cnoreabbrev <expr> Qa
302         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
303 endif
304
305 " Make sure xa0 (alt + space) is automatically changed to a normal whitespace
306 " if pressed accidentally while in insert mode (happens on Mac when alt
307 " doesn't send escape). filereadable() is necessary for Leopard were 'mac' is
308 " no longer set on the console.
309 if has('mac') || filereadable('/Users/.localized')
310     inoremap <Char-0xa0> <Space>
311 endif
312
313 " Disable Apple style movements in MacVim.
314 if has('gui_macvim') && has('eval')
315     let macvim_skip_cmd_opt_movement = 1
316 endif
317
318
319 " SYNTAX SETTINGS
320
321 " Activate syntax coloring.
322 if has('syntax')
323     syntax enable
324
325 " Don't highlight more than 500 columns as I normally don't have that long
326 " lines and they slow down syntax coloring. Thanks to Derek Wyatt
327 " (http://www.derekwyatt.org/vim/the-vimrc-file/).
328     set synmaxcol=500
329
330 " Highlight lines longer than 78 characters. Thanks to Tony Mechelynck
331 " <antoine.mechelynck@gmail.com> from the Vim mailing list. It can easily be
332 " disabled when necessary with :2match (in Vim >= 700).
333     if v:version >= 700
334         2match Todo /\%>78v./
335     else
336         match Todo /\%>78v./
337     endif
338
339 " Highlight TODO, FIXME, CHANGED and XXX in all documents.
340     if v:version > 701 || (v:version == 701 && has('patch42'))
341         call matchadd('Todo', '\(TODO\|FIXME\|CHANGED\|XXX\)')
342     endif
343 endif
344
345
346 " PLUGIN SETTINGS
347
348 " Settings for the NERD commenter.
349 " Don't create any mappings I don't want to use.
350 if has('eval')
351     let NERDCreateDefaultMappings = 0
352 endif
353 " Map toggle comment.
354 map <Leader><Leader> <Plug>NERDCommenterToggle
355
356 " XPTemplate settings.
357 if has('eval')
358     " Try to maintain snippet rendering even after editing outside of a
359     " snippet.
360     let g:xptemplate_strict = 0
361     " Don't complete any braces automatically.
362     let g:xptemplate_brace_complete = 0
363     " Only highlight the current placeholder.
364     let g:xptemplate_highlight = 'current'
365 endif
366
367
368 " AUTO COMMANDS
369
370 " Use a custom auto group to prevent problems when the vimrc files is sourced
371 " twice.
372 if has('autocmd')
373     augroup vimrc
374         autocmd!
375
376 " Go to last position of opened files. Taken from :help last-position-jump.
377         autocmd BufReadPost *
378             \ if line("'\"") > 1 && line("'\"") <= line("$") |
379             \     execute "normal! g'\"" |
380             \ endif
381 " But not for Git commits, go to beginning of the file.
382         autocmd BufReadPost COMMIT_EDITMSG normal! gg
383
384 " Make sure 'list' and 'number' is disabled in help files. This is necessary
385 " when switching to a help buffer which is in the background with :buffer as
386 " these options are local to windows (and not only to buffers). This happens
387 " because I often want to use only one window and thus the help buffer is in
388 " the background.
389         autocmd BufWinEnter *.txt
390             \ if &filetype == 'help' |
391             \     setlocal nolist |
392             \     setlocal nonumber |
393             \ endif
394
395 " Automatically disable 'paste' mode when leaving insert mode. Thanks to
396 " Raimondi in #vim on Freenode (2010-08-14 23:01 CEST). Very useful as I only
397 " want to paste once and then 'paste' gets automatically unset.
398         autocmd InsertLeave * set nopaste
399
400 " AFTER/FTPLUGIN AUTO COMMANDS
401
402 " Disable spell checking for files which don't need it.
403         autocmd FileType deb  setlocal nospell
404         autocmd FileType diff setlocal nospell
405         autocmd FileType tar  setlocal nospell
406 " Fix to allow Vim edit crontab files as crontab doesn't work with
407 " backupcopy=auto.
408         autocmd FileType crontab setlocal backupcopy=yes
409 " Don't use the modeline in git commits as the diff created by `git commit -v`
410 " may contain one which could change the filetype or other settings of the
411 " commit buffer. Also make sure we use only 72 characters per line which is
412 " the recommendation for git commit messages (http://tpope.net/node/106).
413         autocmd FileType gitcommit let g:secure_modelines_allowed_items = [] |
414                                  \ setlocal textwidth=72
415 " Allow folding in perl.
416         autocmd FileType perl let perl_fold = 1 |
417                             \ let perl_fold_blocks = 1
418 " Use the same comment string as for Vim files in Vimperator files.
419         autocmd FileType vimperator setlocal commentstring=\"%s
420
421 " FTDETECT AUTO COMMANDS
422
423 " Recognize .md as markdown files (Vim default is .mkd).
424         autocmd BufRead,BufNewFile *.md set filetype=mkd
425 " Recognize .test as Tcl files.
426         autocmd BufRead,BufNewFile *.test set filetype=tcl
427
428 " OTHER AUTO COMMANDS
429
430 " Disable spell checking, displaying of list characters and long lines when
431 " viewing documentation.
432         autocmd BufReadPost /usr/share/doc/* setlocal nospell nolist | 2match
433
434 " Use diff filetype for mercurial patches in patch queue.
435         autocmd BufReadPost */.hg/patches/* set filetype=diff
436
437     augroup END
438 endif