]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - vimrc
vimrc: Use 'hidden'.
[config/dotfiles.git] / vimrc
1 " Vim main configuration file.
2
3
4 " EDITOR SETTINGS
5
6 " Make sure Vim (and not Vi) settings are enabled.
7 set nocompatible
8
9 " Load my scripts from ~/.vim (my scripts), ~/.vim/plugins (plugins) and
10 " ~/.vim/runtime (checkout of Vim runtime files).
11 set runtimepath-=~/.vim
12 set runtimepath^=~/.vim,~/.vim/plugins,~/.vim/runtime
13
14 " When completing paths first use the longest path then display a list of all
15 " possible files.
16 set wildmode=longest,list
17
18 " Increase number of tabs which can be opened with the -p option.
19 if v:version >= 700
20     set tabpagemax=50
21 endif
22
23
24 " EDIT SETTINGS
25
26 " Enable automatic file detection, plugin and indention.
27 if has("autocmd")
28     filetype plugin indent on
29 endif
30
31 " Use UTF-8 file encoding for all files.
32 set fileencodings=utf-8
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 easily.
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 folding at default
75 endif
76
77 " Only check for case if the searched word contains a capital character.
78 set ignorecase
79 set smartcase
80
81 " Activate spell checking, use English as default.
82 if v:version >= 700
83     set spell
84     set spelllang=en_us
85 endif
86
87 " Allow buffers with changes to be hidden.
88 set hidden
89
90
91 " DISPLAY SETTINGS
92
93 " Use a dark background.
94 set background=dark
95
96 " Activate lines display.
97 set number
98 " Display the ruler with current line/file position.
99 set ruler
100 " Display partial commands in the status line.
101 set showcmd
102
103 " Visualize the line the cursor is currently in.
104 if v:version >= 700
105     set cursorline
106 endif
107
108 " Display tabs as "^I" and trailing space as "-".
109 set list
110 set listchars=trail:-
111
112
113 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
114
115 " Use <space> to move down a page and - to move up one like in mutt.
116 nnoremap <Space> <C-f>
117 nnoremap - <C-b>
118
119 " Maps to change spell language between English and German and disable it.
120 map <Leader>sn :set nospell<CR>
121 map <Leader>se :set spell spelllang=en_us<CR>
122 map <Leader>sd :set spell spelllang=de_de<CR>
123
124 " Add semicolon to the end of the line. Thanks to
125 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim
126 " for an improved version which doesn't clobber any marks.
127 nnoremap <silent> ; :call setline(line('.'), getline('.') . ';')<CR>
128
129 " I often type "W" instead of "w" when trying to save a file. Fix my mistake.
130 " Thanks to Tony Mechelynck <antoine.mechelynck@gmail.com> from the Vim
131 " mailing list for the commands.
132 if v:version < 700
133     cnoreabbrev W w
134     cnoreabbrev Wq wq
135     cnoreabbrev Wqa wqa
136 else
137     cnoreabbrev <expr> W
138         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'w' : 'W')
139     cnoreabbrev <expr> Wq
140         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'wq' : 'Wq')
141     cnoreabbrev <expr> Wqa
142         \ ((getcmdtype() == ':' && getcmdpos() <= 4) ? 'wqa' : 'Wqa')
143 endif
144 " Also fix my typo with "Q".
145 if v:version < 700
146     cnoreabbrev Q q
147     cnoreabbrev Qa qa
148 else
149     cnoreabbrev <expr> Q
150         \ ((getcmdtype() == ':' && getcmdpos() <= 2) ? 'q' : 'Q')
151     cnoreabbrev <expr> Qa
152         \ ((getcmdtype() == ':' && getcmdpos() <= 3) ? 'qa' : 'Qa')
153 endif
154
155 " Make sure xa0 (alt + space) is automatically changed to a normal whitespace
156 " if pressed accidentally while in insert mode (happens on Mac sometimes).
157 if has("mac")
158     imap <Char-0xa0> <Space>
159 endif
160
161 " Disable Apple style movements in MacVim.
162 if has("gui_macvim") && has("eval")
163     let macvim_skip_cmd_opt_movement = 1
164 endif
165
166
167 " SYNTAX SETTINGS
168
169 " Activate syntax coloring.
170 if has("syntax")
171     syntax enable
172
173 " Highlight text longer then 78 characters. Thanks to Tony Mechelynck
174 " <antoine.mechelynck@gmail.com> from the Vim mailing list.
175     if v:version >= 700
176         2match Todo /\%>78v./
177     else
178         match Todo /\%>78v./
179     endif
180 endif
181
182
183 " PLUGIN SETTINGS
184
185 " Settings for the NERD commenter.
186 " Don't create any mappings I don't want to use.
187 if has("eval")
188     let NERDCreateDefaultMappings = 0
189 endif
190 " Map toggle comment.
191 map <Leader><Leader> <plug>NERDCommenterToggle
192
193
194 " AUTO COMMANDS
195
196 " Use a custom auto group to prevent problems when the vimrc files is sourced
197 " twice.
198 if has("autocmd")
199     augroup vimrc
200         autocmd!
201
202 " Use diff filetype for mercurial patches in patch queue.
203         autocmd BufReadPost */.hg/patches/* set filetype=diff
204
205     augroup END
206 endif