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