a68602e9d83d09117f284bd94698d742a1ef8110
[shutils.git] / dotfiles / vim / .vimrc
1 " Purpose: My personal .vimrc
2 " Author: Stefan Huber
3 "
4 "Essential resources for vim users
5 " - vim.sf.net -- find tips and scripts for vim and gvim
6 "
7 "By calling ":help keyword" you get help for the specific
8 "option and setting.
9
10
11 set nocompatible
12 set encoding=utf8
13 set modeline
14 set number
15 set backspace=indent,eol,start
16
17 set tagstack
18 set grepprg=grep\ -nH\ $*
19 set foldcolumn=1
20
21 set incsearch
22 set hlsearch
23
24 set cursorline
25 set laststatus=2
26
27 set listchars=tab:»­,trail:·,eol:$
28
29 set autoindent
30 set tabstop=4
31 set shiftwidth=4
32
33 if version >= 703
34 set spelllang=de_at,en
35 set tabpagemax=20
36 set colorcolumn=+1
37 endif
38
39 " Pathogen runtime path manipulation
40 "call pathogen#infect() "Using the infect method breaks ft detection
41 filetype off
42 call pathogen#runtime_append_all_bundles()
43 call pathogen#helptags()
44
45 syntax on
46 filetype plugin indent on
47
48
49 "Power saving tip: powertop-homepage
50 let &guicursor = &guicursor . ",a:blinkon0"
51 "According to vim help -- enable mouse in xterm...
52 set mouse=a
53
54 " Use 256 colors
55 set t_Co=256
56 let g:CSApprox_attr_map = { 'bold' : 'bold', 'italic' : '', 'sp' : '' }
57 colorscheme shuber-wombat
58
59
60 " Use the below highlight group when displaying bad whitespace is desired.
61 highlight BadWhitespace ctermbg=red guibg=red
62 " Make trailing whitespace be flagged as bad.
63 au Filetype python,tex,c,cpp,cs,objc,java,vim syn match BadWhitespace /\s\+$/ containedin=ALL
64
65
66 if exists(":DetectIndent")
67 au BufReadPost * :DetectIndent
68 endif
69
70
71 let g:syntastic_mode_map = { 'mode' : 'active', 'active_filetypes' : [], 'passive_filetypes' : ['html'] }
72
73
74 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
75 " Some macros
76 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
77
78 "Open current file with a specific program
79 function OpenIn(prog)
80 execute ":!" . a:prog . " % &"
81 endfunction
82
83
84 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
85 " key bindings
86 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
87
88 map <a-c> <plug>NERDCommenterToggle
89
90 nmap <c-q> :q<CR>
91 nmap <c-s> :w<CR>
92 vmap <c-s> <Esc><c-s>gv
93 imap <c-s> <c-o><c-s>
94
95
96 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
97 " fortran
98 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
99
100 "let fortran_free_source=1
101 au BufNewFile *.f90 set fortran_free_source=1
102 au Filetype fortran set cindent cst csto=0
103
104
105 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
106 " C, C++, C#, objc, java
107 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
108
109 au Filetype c,cpp,cs,objc,java map <F4> :cnext <CR>
110 au Filetype c,cpp,cs,objc,java map <S-F4> :cprevious <CR>
111 au Filetype c,cpp,cs,objc,java map <F11> :AS <CR>
112 au Filetype c,cpp,cs,objc,java map <S-F11> :A <CR>
113 au Filetype c,cpp,cs,objc,java set cindent cst csto=0
114 au Filetype c,cpp,cs,objc map <F7> :make <CR>
115 au Filetype java map <F7> :!ant -f ../build.xml <CR>
116 au Filetype c,cpp,cs,obj set makeprg=make
117
118
119 "Prepend the namespace to an identifier, e.g. 'std::' before 'map' excluding
120 "those in C/C++ comments.
121 function PrependCppNamespaceToIdent(ns, id)
122
123 " To match Not to match
124 "
125 "|id |// id
126 "| id |// /* */ id
127 "|/* */ /* */ id |/* */ // id
128 "|id /* */ |/* id
129 "|*/ id | * id
130 " |/* id */
131 " |::id
132 " |/**/ ::id
133 " |#include <id>
134 "
135 " In order to not match '* id' it is assumed that multi-line comment lines
136 " in the middle begin with a star.
137
138 " If #include and // and /* and ^* and :: is not prepend:
139 execute ':%s@\(\(#include\|\/\/\|\/\*\|^\s*\*[^/]\).*\|::\)\@<!\<' . a:id . '\>@' . a:ns . '::' . a:id . '@ge'
140 " If #include and // and :: is not prepend, but */ is, and no further /* or // are found
141 execute ':%s@\(\(#include\|\/\/\).*\)\@<!\*\/\(\/[^\/\*]\|[^\/]\)*\zs\(::\)\@<!\<' . a:id . '\>@' . a:ns . '::' . a:id . '@ge'
142
143 endfunction
144
145 "Prepend STL namespace 'std::' to several identifiers
146 function PrependSTLNamespace()
147 " This list of identifier is not complete, but adding all of them is too
148 " much. We rather like to add identifieres that are 'typical' for C++.
149 " Others, like 'move' are likely to not be C++ specific. In this cases the
150 " user is asked to call PrependCppNamespaceToIdent by hand.
151 let id = []
152 let id = id +['cin', 'cout', 'cerr', 'endl']
153 let id = id +['swap', 'sort', 'max', 'min']
154 let id = id +['vector', 'deque', 'list', 'map', 'multimap', 'set']
155 let id = id +['queue', 'stack', 'priority_queue']
156 let id = id +['ostream', 'istream', 'sstream']
157 let id = id +['pair', 'string']
158
159 for i in id
160 call PrependCppNamespaceToIdent("std", i)
161 endfor
162 endfunction
163
164 function EscapeHexToChar()
165 echo 'Call "x/Nxb addr" in GDB to print N bytes at addr'
166 execute '%s/^.*://'
167 execute '%s/\s*0x\(\x\x\)/\\x\1/g'
168 execute '%s/^\(.*\)$/"\1"/'
169 endfunction
170
171
172
173 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
174 " Text and mail
175 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
176
177 au Filetype text set textwidth=80
178 "According to thunderbirds settings
179 au Filetype mail set textwidth=72
180 au Filetype mail set expandtab
181
182 "a and w reformat the paragraph automatically and a new paragraph
183 "is indicated by lines not ending with white-space
184 if version>=700
185 au Filetype mail,text set fo+=n spell
186 endif
187
188 "Scissor line
189 au Filetype mail syn match Statement /^\s*-*\s*>8\s*-*\s*$/
190 au Filetype mail syn match Statement /^\s*-*\s*8<\s*-*\s*$/
191
192
193 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
194 " PHP
195 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
196
197 "au Filetype php set fo=tcqn
198 if version >= 700
199 au Filetype php set spell
200 endif
201
202 au Filetype php set textwidth=80
203 "au Filetype php set cindent
204
205
206 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
207 " LaTeX
208 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
209
210 au BufRead,BufNewFile *.cls set filetype=tex
211 au Filetype tex set textwidth=80
212
213 "Remove Umlaute
214 function TexTransUmlaute()
215 execute ':%s/ü/\\\"u/ge'
216 execute ':%s/Ü/\\\"U/&'
217 execute ':%s/ö/\\\"o/&'
218 execute ':%s/Ö/\\\"O/&'
219 execute ':%s/ä/\\\"a/&'
220 execute ':%s/Ä/\\\"A/&'
221 execute ':%s/ß/\\\"s/&'
222 execute ':%s/²/\^2/&'
223 endfunction
224
225 function FindWordRepeatings()
226 execute '/\(\<\S\+\>\)\s\+\1\>'
227 " let pos = search('\(\<\S\+\>\)\s\+\1\>', "cw")
228 " call cursor(pos)
229 endfunction
230
231 let g:tex_flavor = "latex"
232 let g:LatexBox_viewer="okular"
233 let g:LatexBox_latexmk_options="-pvc"
234
235 au Filetype tex set smartindent
236
237 if version >= 700
238 au Filetype tex set spell
239 endif
240
241
242 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
243 " python
244 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
245
246 au Filetype python map <F5> :!python % <CR>
247
248 " vimrc file for following the coding standards specified in PEP 7 & 8.
249
250 " Number of spaces that a pre-existing tab is equal to.
251 " For the amount of space used for a new tab use shiftwidth.
252 au Filetype python set shiftwidth=4
253 au Filetype python set expandtab
254
255 " Wrap text after a certain number of characters
256 au Filetype python set textwidth=79
257
258
259 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
260 " XML, Ipe
261 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
262
263 "Opens the current file in ipe
264 au Filetype xml map <M-o> :call OpenIn("ipe") <CR>
265
266
267 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
268 " gnuplot
269 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
270
271 "Opens the current file in ipe
272 au Filetype gnuplot map <M-o> :call OpenIn("gnuplot -persist") <CR>
273
274
275 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
276 " youcompleteme
277 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
278
279 let g:ycm_min_num_of_chars_for_completion = 999
280 let g:ycm_key_list_select_completion = ['<Down>']
281
282
283
284 if filereadable($HOME . "/.vimrc-local")
285 source ~/.vimrc-local
286 endif
287
288