]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
5be58ef57276222c21321af5f49db9cec62fe157
[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 " Increase number of tabs which can be opened with the -p option.
23 if v:version >= 700
24     set tabpagemax=50
25 endif
26
27
28 " EDIT SETTINGS
29
30 " Enable automatic file detection, plugin and indention.
31 if has('autocmd')
32     filetype plugin indent on
33 endif
34
35 " Use UTF-8 file encoding for all files. Automatically recognize latin1 in
36 " existing files.
37 set fileencodings=utf-8,latin1
38
39 " Wrap text after 78 characters.
40 set textwidth=78
41
42 " Set tabs to 4 spaces, use softtabs.
43 set shiftwidth=4
44 set softtabstop=4
45 set expandtab
46 " When < and > is used indent/deindent to the next shiftwidth boundary.
47 set shiftround
48 " Use the default value for real tabs.
49 set tabstop=8
50
51 " Enable auto indention.
52 set autoindent
53
54 " When joining lines only add one space after a sentence.
55 set nojoinspaces
56
57 " Allow backspacing over autoindent and line breaks.
58 set backspace=indent,eol
59
60 " Start a comment when hitting enter after a commented line (r) and when using
61 " o or O around a commented line (o).
62 set formatoptions+=ro
63 " Don't break a line if was already longer then 'textwidth' when insert mode
64 " started.
65 set formatoptions+=l
66
67 " Allow virtual editing (cursor can be positioned anywhere, even when there is
68 " no character) in visual block mode.
69 set virtualedit=block
70
71 " Already display matches while typing the search command. This makes spotting
72 " errors easy.
73 set incsearch
74
75 " Activate syntax folding.
76 if has('folding')
77     set foldmethod=syntax
78     set foldcolumn=2
79     set foldlevel=99 " no closed folds at default, 'foldenable' would disable
80                      " folding which is not what I want
81 endif
82
83 " Only check for case if the searched word contains a capital character.
84 set ignorecase
85 set smartcase
86
87 " Activate spell checking, use English as default. Don't use spell checking
88 " when diffing.
89 if v:version >= 700 && !&diff
90     set spell
91     set spelllang=en_us
92 endif
93
94 " Allow buffers with changes to be hidden.
95 set hidden
96
97
98 " DISPLAY SETTINGS
99
100 " Use a dark background.
101 set background=dark
102
103 " Activate lines display.
104 set number
105 " Display the ruler with current line/file position.
106 set ruler
107 " Display partial commands in the status line.
108 set showcmd
109
110 " Visualize the line the cursor is currently in.
111 if v:version >= 700
112     set cursorline
113 endif
114
115 " Display tabs, trailing space, non breakable spaces and long lines (when
116 " wrapping is enabled).
117 set list
118 set listchars=trail:-,nbsp:!,extends:>
119
120
121 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
122
123 " Use <space> to move down a page and - to move up one like in mutt.
124 nnoremap <Space> <C-f>
125 nnoremap - <C-b>
126
127 " Fast access to buffers.
128 nnoremap <Leader>1 :1b<CR>
129 nnoremap <Leader>2 :2b<CR>
130 nnoremap <Leader>3 :3b<CR>
131 nnoremap <Leader>4 :4b<CR>
132 nnoremap <Leader>5 :5b<CR>
133 nnoremap <Leader>6 :6b<CR>
134 nnoremap <Leader>7 :7b<CR>
135 nnoremap <Leader>8 :8b<CR>
136 nnoremap <Leader>9 :9b<CR>
137 nnoremap <Leader>0 :10b<CR>
138
139 " Maps to change spell language between English and German and disable it.
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 then 78 characters. Thanks to Tony Mechelynck
198 " <antoine.mechelynck@gmail.com> from the Vim mailing list.
199     if v:version >= 700
200         2match Todo /\%>78v./
201     else
202         match Todo /\%>78v./
203     endif
204
205 " Highlight TODO, FIXME, CHANGED and XXX in all documents.
206     if v:version >= 701 && has('patch40')
207         call matchadd('Todo', '\(TODO\|FIXME\|CHANGED\|XXX\)')
208     endif
209 endif
210
211
212 " PLUGIN SETTINGS
213
214 " Settings for the NERD commenter.
215 " Don't create any mappings I don't want to use.
216 if has('eval')
217     let NERDCreateDefaultMappings = 0
218 endif
219 " Map toggle comment.
220 map <Leader><Leader> <plug>NERDCommenterToggle
221
222
223 " AUTO COMMANDS
224
225 " Use a custom auto group to prevent problems when the vimrc files is sourced
226 " twice.
227 if has('autocmd')
228     augroup vimrc
229         autocmd!
230
231 " Go to last position of opened files. Taken from :help last-position-jump.
232         autocmd BufReadPost *
233             \ if line("'\"") > 1 && line("'\"") <= line("$") |
234             \     execute "normal! g'\"" |
235             \ endif
236
237 " Use diff filetype for mercurial patches in patch queue.
238         autocmd BufReadPost */.hg/patches/* set filetype=diff
239
240     augroup END
241 endif