]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
vimrc: Use as little space as possible for numbers column.
[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 " But use as little space as necessary for the numbers column. Thanks to James
115 " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
116 if v:version >= 700
117     set numberwidth=1
118 endif
119 " Display the ruler with current line/file position. If 'statusline' is used
120 " then this only affects <C-g>.
121 set ruler
122 " Display partial commands in the status line.
123 set showcmd
124
125 " Visualize the line the cursor is currently in.
126 if v:version >= 700
127     set cursorline
128 endif
129
130 " Display tabs, trailing space, non breakable spaces and long lines (when
131 " wrapping is disabled).
132 set list
133 set listchars=trail:-,extends:>
134 if v:version >= 700
135     set listchars+=nbsp:!
136 endif
137
138 if has('statusline')
139     " Always display the status line even if there is only one window.
140     set laststatus=2
141
142     set statusline=
143     " on the left
144     set statusline+=%02n: " buffer number
145     set statusline+=%f\   " path to current file in buffer
146     set statusline+=%h    " [help] if buffer is help file
147     set statusline+=%w    " [Preview] if buffer is preview buffer
148     set statusline+=%m    " [+] if buffer was modified,
149                           " [-] if 'modifiable' is off
150     set statusline+=%r    " [RO] if buffer is read only
151
152     " on the right
153     set statusline+=%=                " right align
154     set statusline+=%-12.(%l,%c%V%)\  " line number (%l),
155                                       " column number (%c),
156                                       " virtual column number if different
157                                       "                       than %c (%V)
158     set statusline+=%P                " position in file in percent
159 endif
160
161
162 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
163
164 " Disable arrow keys for all modes except command modes. Thanks to James Vega
165 " (http://git.jamessan.com/?p=etc/vim.git;a=summary).
166 map <right> <nop>
167 map <left>  <nop>
168 map <up>    <nop>
169 map <down>  <nop>
170 imap <right> <nop>
171 imap <left>  <nop>
172 imap <up>    <nop>
173 imap <down>  <nop>
174
175 " Use <space> to move down a page and - to move up one like in mutt.
176 nnoremap <Space> <C-f>
177 nnoremap - <C-b>
178
179 " Fast access to buffers.
180 nnoremap <Leader>1 :1b<CR>
181 nnoremap <Leader>2 :2b<CR>
182 nnoremap <Leader>3 :3b<CR>
183 nnoremap <Leader>4 :4b<CR>
184 nnoremap <Leader>5 :5b<CR>
185 nnoremap <Leader>6 :6b<CR>
186 nnoremap <Leader>7 :7b<CR>
187 nnoremap <Leader>8 :8b<CR>
188 nnoremap <Leader>9 :9b<CR>
189 nnoremap <Leader>0 :10b<CR>
190
191 " Make last active window the only window. Similar to <C-w> o.
192 nnoremap <C-w>O <C-w>p<C-w>o
193
194 " Maps to change spell language between English and German and disable spell
195 " checking.
196 if v:version >= 700
197     map <Leader>sn :set nospell<CR>
198     map <Leader>se :set spell spelllang=en_us<CR>
199     map <Leader>sd :set spell spelllang=de_de<CR>
200 endif
201
202 " Add semicolon to the end of the line. Thanks to
203 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
204 " on Freenode for an improved version which doesn't clobber any marks.
205 nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
206
207 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
208 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
209 " mailing list for the commands.
210 if v:version < 700
211     cnoreabbrev W w
212     cnoreabbrev Wa wa
213     cnoreabbrev Wq wq
214     cnoreabbrev Wqa wqa
215 else
216     cnoreabbrev <expr> W
217         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
218     cnoreabbrev <expr> Wa
219         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wa' : 'Wa')
220     cnoreabbrev <expr> Wq
221         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
222     cnoreabbrev <expr> Wqa
223         \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
224 endif
225 " Also fix my typo with "Q".
226 if v:version < 700
227     cnoreabbrev Q q
228     cnoreabbrev Qa qa
229 else
230     cnoreabbrev <expr> Q
231         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
232     cnoreabbrev <expr> Qa
233         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
234 endif
235
236 " Make sure xa0 (alt + space) is automatically changed to a normal whitespace
237 " if pressed accidentally while in insert mode (happens on Mac when alt
238 " doesn't send escape). filereadable() is necessary for Leopard were 'mac' is
239 " no longer set on the console.
240 if has('mac') || filereadable('/Users/.localized')
241     inoremap <Char-0xa0> <Space>
242 endif
243
244 " Disable Apple style movements in MacVim.
245 if has('gui_macvim') && has('eval')
246     let macvim_skip_cmd_opt_movement = 1
247 endif
248
249
250 " SYNTAX SETTINGS
251
252 " Activate syntax coloring.
253 if has('syntax')
254     syntax enable
255
256 " Highlight lines longer than 78 characters. Thanks to Tony Mechelynck
257 " <antoine.mechelynck@gmail.com> from the Vim mailing list. It can easily be
258 " disabled when necessary with :2match (in Vim >= 700).
259     if v:version >= 700
260         2match Todo /\%>78v./
261     else
262         match Todo /\%>78v./
263     endif
264
265 " Highlight TODO, FIXME, CHANGED and XXX in all documents.
266     if v:version > 701 || (v:version == 701 && has('patch42'))
267         call matchadd('Todo', '\(TODO\|FIXME\|CHANGED\|XXX\)')
268     endif
269 endif
270
271
272 " PLUGIN SETTINGS
273
274 " Settings for the NERD commenter.
275 " Don't create any mappings I don't want to use.
276 if has('eval')
277     let NERDCreateDefaultMappings = 0
278 endif
279 " Map toggle comment.
280 map <Leader><Leader> <plug>NERDCommenterToggle
281
282
283 " AUTO COMMANDS
284
285 " Use a custom auto group to prevent problems when the vimrc files is sourced
286 " twice.
287 if has('autocmd')
288     augroup vimrc
289         autocmd!
290
291 " Go to last position of opened files. Taken from :help last-position-jump.
292         autocmd BufReadPost *
293             \ if line("'\"") > 1 && line("'\"") <= line("$") |
294             \     execute "normal! g'\"" |
295             \ endif
296 " But not for Git commits, go to beginning of the file.
297         autocmd BufReadPost COMMIT_EDITMSG normal! gg
298
299 " Make sure 'list' and 'number' is disabled in help files. This is necessary
300 " when switching to a help buffer which is in the background with :buffer as
301 " these options are local to windows (and not only to buffers). This happens
302 " because I often want to use only one window and thus the help buffer is in
303 " the background.
304         autocmd BufWinEnter *.txt
305             \ if &filetype == 'help' |
306             \     setlocal nolist |
307             \     setlocal nonumber |
308             \ endif
309
310 " AFTER/FTPLUGIN AUTO COMMANDS
311
312 " Disable spell checking for files which don't need it.
313         autocmd FileType deb  setlocal nospell
314         autocmd FileType diff setlocal nospell
315         autocmd FileType tar  setlocal nospell
316 " Fix to allow Vim edit crontab files as crontab doesn't work with
317 " backupcopy=auto.
318         autocmd FileType crontab setlocal backupcopy=yes
319 " Don't use the modeline in git commits as the diff created by `git commit -v`
320 " may contain one which could change the filetype or other settings of the
321 " commit buffer. Also make sure we use only 72 characters per line which is
322 " the recommendation for git commit messages (http://tpope.net/node/106).
323         autocmd FileType gitcommit let g:secure_modelines_allowed_items = [] |
324                                  \ setlocal textwidth=72
325 " Allow folding in perl.
326         autocmd FileType perl let perl_fold = 1 |
327                             \ let perl_fold_blocks = 1
328 " Use the same comment string as for Vim files in Vimperator files.
329         autocmd FileType vimperator setlocal commentstring=\"%s
330
331 " FTDETECT AUTO COMMANDS
332
333 " Recognize .md as markdown files (Vim default is .mkd).
334         autocmd BufRead,BufNewFile *.md set filetype=mkd
335 " Recognize .test as Tcl files.
336         autocmd BufRead,BufNewFile *.test set filetype=tcl
337
338 " OTHER AUTO COMMANDS
339
340 " Use diff filetype for mercurial patches in patch queue.
341         autocmd BufReadPost */.hg/patches/* set filetype=diff
342
343     augroup END
344 endif