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