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