]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
vimrc: Don't map ; directly, use <Leader>; instead.
[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 && has('syntax') && !&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 " Make last active window the only window. Similar to <C-w> o.
145 nnoremap <C-w>O <C-w>p<C-w>o
146
147 " Maps to change spell language between English and German and disable spell
148 " checking.
149 if v:version >= 700
150     map <Leader>sn :set nospell<CR>
151     map <Leader>se :set spell spelllang=en_us<CR>
152     map <Leader>sd :set spell spelllang=de_de<CR>
153 endif
154
155 " Add semicolon to the end of the line. Thanks to
156 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
157 " on Freenode for an improved version which doesn't clobber any marks.
158 nnoremap <silent> <Leader>; :call setline(line('.'), getline('.') . ';')<CR>
159
160 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
161 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
162 " mailing list for the commands.
163 if v:version < 700
164     cnoreabbrev W w
165     cnoreabbrev Wq wq
166     cnoreabbrev Wqa wqa
167 else
168     cnoreabbrev <expr> W
169         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
170     cnoreabbrev <expr> Wq
171         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
172     cnoreabbrev <expr> Wqa
173         \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
174 endif
175 " Also fix my typo with "Q".
176 if v:version < 700
177     cnoreabbrev Q q
178     cnoreabbrev Qa qa
179 else
180     cnoreabbrev <expr> Q
181         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
182     cnoreabbrev <expr> Qa
183         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
184 endif
185
186 " Make sure xa0 (alt + space) is automatically changed to a normal whitespace
187 " if pressed accidentally while in insert mode (happens on Mac when alt
188 " doesn't send escape). filereadable() is necessary for Leopard were 'mac' is
189 " no longer set on the console.
190 if has('mac') || filereadable('/Users/.localized')
191     inoremap <Char-0xa0> <Space>
192 endif
193
194 " Disable Apple style movements in MacVim.
195 if has('gui_macvim') && has('eval')
196     let macvim_skip_cmd_opt_movement = 1
197 endif
198
199
200 " SYNTAX SETTINGS
201
202 " Activate syntax coloring.
203 if has('syntax')
204     syntax enable
205
206 " Highlight lines longer than 78 characters. Thanks to Tony Mechelynck
207 " <antoine.mechelynck@gmail.com> from the Vim mailing list.
208 " It can easily be disabled if necessary with :2match (in Vim >= 700).
209     if v:version >= 700
210         2match Todo /\%>78v./
211     else
212         match Todo /\%>78v./
213     endif
214
215 " Highlight TODO, FIXME, CHANGED and XXX in all documents.
216     if v:version > 701 || (v:version == 701 && has('patch42'))
217         call matchadd('Todo', '\(TODO\|FIXME\|CHANGED\|XXX\)')
218     endif
219 endif
220
221
222 " PLUGIN SETTINGS
223
224 " Settings for the NERD commenter.
225 " Don't create any mappings I don't want to use.
226 if has('eval')
227     let NERDCreateDefaultMappings = 0
228 endif
229 " Map toggle comment.
230 map <Leader><Leader> <plug>NERDCommenterToggle
231
232
233 " AUTO COMMANDS
234
235 " Use a custom auto group to prevent problems when the vimrc files is sourced
236 " twice.
237 if has('autocmd')
238     augroup vimrc
239         autocmd!
240
241 " Go to last position of opened files. Taken from :help last-position-jump.
242         autocmd BufReadPost *
243             \ if line("'\"") > 1 && line("'\"") <= line("$") |
244             \     execute "normal! g'\"" |
245             \ endif
246 " But not for Git commits, go to beginning of the file.
247         autocmd BufReadPost COMMIT_EDITMSG normal! gg
248
249 " AFTER/FTPLUGIN AUTO COMMANDS
250
251 " Disable spell checking for files which don't need it.
252         autocmd FileType deb  setlocal nospell
253         autocmd FileType diff setlocal nospell
254         autocmd FileType tar  setlocal nospell
255 " Fix to allow Vim edit crontab files as crontab doesn't work with
256 " backupcopy=auto.
257         autocmd FileType crontab setlocal backupcopy=yes
258 " Don't use the modeline as the diff created by `git commit -v` may contain
259 " one which could change the filetype or other settings of the commit window.
260         autocmd FileType gitcommit setlocal nomodeline |
261                                  \ let g:secure_modelines_allowed_items = []
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