]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
vimrc: Be more compatible with older versions.
[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.
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.
90 set hidden
91
92
93 " DISPLAY SETTINGS
94
95 " Use a dark background.
96 set background=dark
97
98 " Activate lines display.
99 set number
100 " Display the ruler with current line/file position.
101 set ruler
102 " Display partial commands in the status line.
103 set showcmd
104
105 " Visualize the line the cursor is currently in.
106 if v:version >= 700
107     set cursorline
108 endif
109
110 " Display tabs, trailing space, non breakable spaces and long lines (when
111 " wrapping is enabled).
112 set list
113 set listchars=trail:-,extends:>
114 if v:version >= 700
115     set listchars+=nbsp:!
116 endif
117
118
119 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
120
121 " Use <space> to move down a page and - to move up one like in mutt.
122 nnoremap <Space> <C-f>
123 nnoremap - <C-b>
124
125 " Fast access to buffers.
126 nnoremap <Leader>1 :1b<CR>
127 nnoremap <Leader>2 :2b<CR>
128 nnoremap <Leader>3 :3b<CR>
129 nnoremap <Leader>4 :4b<CR>
130 nnoremap <Leader>5 :5b<CR>
131 nnoremap <Leader>6 :6b<CR>
132 nnoremap <Leader>7 :7b<CR>
133 nnoremap <Leader>8 :8b<CR>
134 nnoremap <Leader>9 :9b<CR>
135 nnoremap <Leader>0 :10b<CR>
136
137 " Maps to change spell language between English and German and disable it.
138 if v:version >= 700
139     map <Leader>sn :set nospell<CR>
140     map <Leader>se :set spell spelllang=en_us<CR>
141     map <Leader>sd :set spell spelllang=de_de<CR>
142 endif
143
144 " Add semicolon to the end of the line. Thanks to
145 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
146 " on Freenode for an improved version which doesn't clobber any marks.
147 nnoremap <silent> ; :call setline(line('.'), getline('.') . ';')<CR>
148
149 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
150 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
151 " mailing list for the commands.
152 if v:version < 700
153     cnoreabbrev W w
154     cnoreabbrev Wq wq
155     cnoreabbrev Wqa wqa
156 else
157     cnoreabbrev <expr> W
158         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
159     cnoreabbrev <expr> Wq
160         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
161     cnoreabbrev <expr> Wqa
162         \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
163 endif
164 " Also fix my typo with "Q".
165 if v:version < 700
166     cnoreabbrev Q q
167     cnoreabbrev Qa qa
168 else
169     cnoreabbrev <expr> Q
170         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
171     cnoreabbrev <expr> Qa
172         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
173 endif
174
175 " Make sure xa0 (alt + space) is automatically changed to a normal whitespace
176 " if pressed accidentally while in insert mode (happens on Mac when alt
177 " doesn't send escape). filereadable() is necessary for Leopard were 'mac' is
178 " no longer set on the console.
179 if has('mac') || filereadable('/Users/.localized')
180     inoremap <Char-0xa0> <Space>
181 endif
182
183 " Disable Apple style movements in MacVim.
184 if has('gui_macvim') && has('eval')
185     let macvim_skip_cmd_opt_movement = 1
186 endif
187
188
189 " SYNTAX SETTINGS
190
191 " Activate syntax coloring.
192 if has('syntax')
193     syntax enable
194
195 " Highlight text longer then 78 characters. Thanks to Tony Mechelynck
196 " <antoine.mechelynck@gmail.com> from the Vim mailing list.
197     if v:version >= 700
198         2match Todo /\%>78v./
199     else
200         match Todo /\%>78v./
201     endif
202
203 " Highlight TODO, FIXME, CHANGED and XXX in all documents.
204     if v:version >= 701 && has('patch40')
205         call matchadd('Todo', '\(TODO\|FIXME\|CHANGED\|XXX\)')
206     endif
207 endif
208
209
210 " PLUGIN SETTINGS
211
212 " Settings for the NERD commenter.
213 " Don't create any mappings I don't want to use.
214 if has('eval')
215     let NERDCreateDefaultMappings = 0
216 endif
217 " Map toggle comment.
218 map <Leader><Leader> <plug>NERDCommenterToggle
219
220
221 " AUTO COMMANDS
222
223 " Use a custom auto group to prevent problems when the vimrc files is sourced
224 " twice.
225 if has('autocmd')
226     augroup vimrc
227         autocmd!
228
229 " Go to last position of opened files. Taken from :help last-position-jump.
230         autocmd BufReadPost *
231             \ if line("'\"") > 1 && line("'\"") <= line("$") |
232             \     execute "normal! g'\"" |
233             \ endif
234
235 " AFTER/FTPLUGIN AUTO COMMANDS
236
237 " Disable spell checking for files which don't need it.
238         autocmd FileType deb setlocal nospell
239         autocmd FileType diff setlocal nospell
240         autocmd FileType tar setlocal nospell
241 " Fix to allow Vim edit crontab files as crontab doesn't work with
242 " backupcopy=auto.
243         autocmd FileType crontab setlocal backupcopy=yes
244 " Don't use the modeline as the diff created by `git commit -v` may contain
245 " one which could change the filetype or other settings of the commit window.
246         autocmd FileType gitcommit setlocal nomodeline |
247                                  \ let g:secure_modelines_allowed_items = []
248 " Allow folding in perl.
249         autocmd FileType perl let perl_fold = 1 |
250                             \ let perl_fold_blocks = 1
251 " Use the same comment string as for Vim files in vimperator files.
252         autocmd FileType vimperator setlocal commentstring=\"%s
253
254 " FTDETECT AUTO COMMANDS
255
256 " Recognize .md as markdown files.
257         autocmd BufRead,BufNewFile *.md set filetype=mkd
258 " Recognize .test as Tcl files.
259         autocmd BufRead,BufNewFile *.test set filetype=tcl
260
261 " OTHER AUTO COMMANDS
262
263 " Use diff filetype for mercurial patches in patch queue.
264         autocmd BufReadPost */.hg/patches/* set filetype=diff
265
266     augroup END
267 endif