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