]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
vimrc: Don't store swap files in the same directory as the edited file.
[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).
8 if $HOME == '/root' || exists('$SUDO_USER')
9     echomsg 'Running as root is forbidden! Use sudoedit.'
10     qa
11 endif
12
13
14 " Reset all options (except 'term, 'lines' and 'columns'). This makes sure a
15 " system wide configuration file doesn't change default values.
16 set all&
17
18 " Make sure Vim (and not Vi) settings are used.
19 set nocompatible
20
21 " Load my scripts from ~/.vim (my scripts) and ~/.vim/runtime (checkout of Vim
22 " runtime files).
23 set runtimepath-=~/.vim
24 set runtimepath^=~/.vim,~/.vim/runtime
25
26 " Don't store swap files in the same directory as the edited file.
27 set directory-=.
28
29 " Disable modelines as they may cause security problems. Instead use
30 " securemodelines (Vim script #1876).
31 set nomodeline
32
33 " When completing paths first use the longest path then display a list of all
34 " possible files.
35 set wildmode=longest,list
36
37
38 " EDIT SETTINGS
39
40 " Enable automatic file detection, plugin and indention support.
41 if has('autocmd')
42     filetype plugin indent on
43 endif
44
45 " Use UTF-8 file encoding for all files. Automatically recognize latin1 in
46 " existing files.
47 set fileencodings=utf-8,latin1
48
49 " Wrap text after 78 characters.
50 set textwidth=78
51
52 " Set tabs to 4 spaces, use softtabs.
53 set shiftwidth=4
54 set softtabstop=4
55 set expandtab
56 " When < and > is used indent/deindent to the next 'shiftwidth' boundary.
57 set shiftround
58 " Use the default value for real tabs.
59 set tabstop=8
60
61 " Enable auto indention.
62 set autoindent
63
64 " When joining lines only add one space after a sentence.
65 set nojoinspaces
66
67 " Allow backspacing over autoindent and line breaks.
68 set backspace=indent,eol
69
70 " Start a comment when hitting enter after a commented line (r) and when using
71 " o or O around a commented line (o).
72 set formatoptions+=ro
73 " Don't break a line if was already longer then 'textwidth' when insert mode
74 " started.
75 set formatoptions+=l
76
77 " Allow virtual editing (cursor can be positioned anywhere, even when there is
78 " no character) in visual block mode.
79 set virtualedit=block
80
81 " Already display matches while typing the search command. This makes spotting
82 " errors easy.
83 set incsearch
84
85 " Activate syntax folding.
86 if has('folding')
87     set foldmethod=syntax
88     set foldcolumn=2
89     set foldlevel=99 " no closed folds at default, 'foldenable' would disable
90                      " folding which is not what I want
91 endif
92
93 " Only check for case if the searched word contains a capital character.
94 set ignorecase
95 set smartcase
96
97 " Activate spell checking, use English as default. Don't use spell checking
98 " when diffing.
99 if v:version >= 700 && has('syntax') && !&diff
100     set spell
101     set spelllang=en_us
102 endif
103
104 " Allow buffers with changes to be hidden. Very important for effective
105 " editing with multiple buffers.
106 set hidden
107
108
109 " DISPLAY SETTINGS
110
111 " Use a dark background. Doesn't change the background color, only sets text
112 " colors for a dark terminal.
113 set background=dark
114
115 " Display line numbers.
116 set number
117 " But use as little space as necessary for the numbers column. Thanks to James
118 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
119 if v:version >= 700
120     set numberwidth=1
121 endif
122 " Display the ruler with current line/file position. If 'statusline' is used
123 " then this only affects <C-g>.
124 set ruler
125 " Display partial commands in the status line.
126 set showcmd
127
128 " Visualize the line the cursor is currently in.
129 if v:version >= 700
130     set cursorline
131 endif
132
133 " Display tabs, trailing space, non breakable spaces and long lines (when
134 " wrapping is disabled).
135 set list
136 set listchars=trail:-,extends:>
137 if v:version >= 700
138     set listchars+=nbsp:!
139 endif
140
141 if has('statusline')
142     " Always display the status line even if there is only one window.
143     set laststatus=2
144
145     set statusline=
146     " on the left
147     set statusline+=%02n: " buffer number
148     set statusline+=%f\   " path to current file in buffer
149     set statusline+=%h    " [help] if buffer is help file
150     set statusline+=%w    " [Preview] if buffer is preview buffer
151     set statusline+=%m    " [+] if buffer was modified,
152                           " [-] if 'modifiable' is off
153     set statusline+=%r    " [RO] if buffer is read only
154
155     " on the right
156     set statusline+=%=                " right align
157     set statusline+=%-12.(%l,%c%V%)\  " line number (%l),
158                                       " column number (%c),
159                                       " virtual column number if different
160                                       "                       than %c (%V)
161     set statusline+=%P                " position in file in percent
162 endif
163
164
165 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
166
167 " Disable arrow keys for all modes except command modes. Thanks to James Vega
168 " (http://git.jamessan.com/?p=etc/vim.git;a=summary).
169 map <right> <nop>
170 map <left>  <nop>
171 map <up>    <nop>
172 map <down>  <nop>
173 imap <right> <nop>
174 imap <left>  <nop>
175 imap <up>    <nop>
176 imap <down>  <nop>
177
178 " Use <space> to move down a page and - to move up one like in mutt.
179 nnoremap <Space> <C-f>
180 nnoremap - <C-b>
181
182 " Fast access to buffers.
183 nnoremap <Leader>1 :1b<CR>
184 nnoremap <Leader>2 :2b<CR>
185 nnoremap <Leader>3 :3b<CR>
186 nnoremap <Leader>4 :4b<CR>
187 nnoremap <Leader>5 :5b<CR>
188 nnoremap <Leader>6 :6b<CR>
189 nnoremap <Leader>7 :7b<CR>
190 nnoremap <Leader>8 :8b<CR>
191 nnoremap <Leader>9 :9b<CR>
192 nnoremap <Leader>0 :10b<CR>
193
194 " Make last active window the only window. Similar to <C-w> o.
195 nnoremap <C-w>O <C-w>p<C-w>o
196
197 " Maps to change spell language between English and German and disable spell
198 " checking.
199 if v:version >= 700
200     map <Leader>sn :set nospell<CR>
201     map <Leader>se :set spell spelllang=en_us<CR>
202     map <Leader>sd :set spell spelllang=de_de<CR>
203 endif
204
205 " Add semicolon to the end of the line. Thanks to
206 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
207 " on Freenode for an improved version which doesn't clobber any marks.
208 nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
209
210 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
211 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
212 " mailing list for the commands.
213 if v:version < 700
214     cnoreabbrev W w
215     cnoreabbrev Wa wa
216     cnoreabbrev Wq wq
217     cnoreabbrev Wqa wqa
218 else
219     cnoreabbrev <expr> W
220         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
221     cnoreabbrev <expr> Wa
222         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wa' : 'Wa')
223     cnoreabbrev <expr> Wq
224         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
225     cnoreabbrev <expr> Wqa
226         \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
227 endif
228 " Also fix my typo with "Q".
229 if v:version < 700
230     cnoreabbrev Q q
231     cnoreabbrev Qa qa
232 else
233     cnoreabbrev <expr> Q
234         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
235     cnoreabbrev <expr> Qa
236         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
237 endif
238
239 " Make sure xa0 (alt + space) is automatically changed to a normal whitespace
240 " if pressed accidentally while in insert mode (happens on Mac when alt
241 " doesn't send escape). filereadable() is necessary for Leopard were 'mac' is
242 " no longer set on the console.
243 if has('mac') || filereadable('/Users/.localized')
244     inoremap <Char-0xa0> <Space>
245 endif
246
247 " Disable Apple style movements in MacVim.
248 if has('gui_macvim') && has('eval')
249     let macvim_skip_cmd_opt_movement = 1
250 endif
251
252
253 " SYNTAX SETTINGS
254
255 " Activate syntax coloring.
256 if has('syntax')
257     syntax enable
258
259 " Highlight lines longer than 78 characters. Thanks to Tony Mechelynck
260 " <antoine.mechelynck@gmail.com> from the Vim mailing list. It can easily be
261 " disabled when necessary with :2match (in Vim >= 700).
262     if v:version >= 700
263         2match Todo /\%>78v./
264     else
265         match Todo /\%>78v./
266     endif
267
268 " Highlight TODO, FIXME, CHANGED and XXX in all documents.
269     if v:version > 701 || (v:version == 701 && has('patch42'))
270         call matchadd('Todo', '\(TODO\|FIXME\|CHANGED\|XXX\)')
271     endif
272 endif
273
274
275 " PLUGIN SETTINGS
276
277 " Settings for the NERD commenter.
278 " Don't create any mappings I don't want to use.
279 if has('eval')
280     let NERDCreateDefaultMappings = 0
281 endif
282 " Map toggle comment.
283 map <Leader><Leader> <plug>NERDCommenterToggle
284
285
286 " AUTO COMMANDS
287
288 " Use a custom auto group to prevent problems when the vimrc files is sourced
289 " twice.
290 if has('autocmd')
291     augroup vimrc
292         autocmd!
293
294 " Go to last position of opened files. Taken from :help last-position-jump.
295         autocmd BufReadPost *
296             \ if line("'\"") > 1 && line("'\"") <= line("$") |
297             \     execute "normal! g'\"" |
298             \ endif
299 " But not for Git commits, go to beginning of the file.
300         autocmd BufReadPost COMMIT_EDITMSG normal! gg
301
302 " Make sure 'list' and 'number' is disabled in help files. This is necessary
303 " when switching to a help buffer which is in the background with :buffer as
304 " these options are local to windows (and not only to buffers). This happens
305 " because I often want to use only one window and thus the help buffer is in
306 " the background.
307         autocmd BufWinEnter *.txt
308             \ if &filetype == 'help' |
309             \     setlocal nolist |
310             \     setlocal nonumber |
311             \ endif
312
313 " AFTER/FTPLUGIN AUTO COMMANDS
314
315 " Disable spell checking for files which don't need it.
316         autocmd FileType deb  setlocal nospell
317         autocmd FileType diff setlocal nospell
318         autocmd FileType tar  setlocal nospell
319 " Fix to allow Vim edit crontab files as crontab doesn't work with
320 " backupcopy=auto.
321         autocmd FileType crontab setlocal backupcopy=yes
322 " Don't use the modeline in git commits as the diff created by `git commit -v`
323 " may contain one which could change the filetype or other settings of the
324 " commit buffer. Also make sure we use only 72 characters per line which is
325 " the recommendation for git commit messages (http://tpope.net/node/106).
326         autocmd FileType gitcommit let g:secure_modelines_allowed_items = [] |
327                                  \ setlocal textwidth=72
328 " Allow folding in perl.
329         autocmd FileType perl let perl_fold = 1 |
330                             \ let perl_fold_blocks = 1
331 " Use the same comment string as for Vim files in Vimperator files.
332         autocmd FileType vimperator setlocal commentstring=\"%s
333
334 " FTDETECT AUTO COMMANDS
335
336 " Recognize .md as markdown files (Vim default is .mkd).
337         autocmd BufRead,BufNewFile *.md set filetype=mkd
338 " Recognize .test as Tcl files.
339         autocmd BufRead,BufNewFile *.test set filetype=tcl
340
341 " OTHER AUTO COMMANDS
342
343 " Use diff filetype for mercurial patches in patch queue.
344         autocmd BufReadPost */.hg/patches/* set filetype=diff
345
346     augroup END
347 endif