-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.vimrc
408 lines (331 loc) · 11.4 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
" Basic settings --------------------{{{
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" The bundles you install will be listed here
Bundle 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Bundle 'Valloric/YouCompleteMe'
Bundle 'davidhalter/jedi-vim'
Bundle 'shime/vim-livedown'
" Next activates Pathogen
call pathogen#infect()
call pathogen#helptags()
let c='a'
while c <= 'z'
exec "set <A-".c.">=\e".c
exec "imap \e".c." <A-".c.">"
let c = nr2char(1+char2nr(c))
endw
set timeout ttimeoutlen=50
" The rest of the config starts here
filetype plugin indent on
syntax enable
let g:solarized_termcolors=256
colorscheme solarized
set background=dark
set number
set guifont=Monospace\ 13
set incsearch
set cursorline
" automatically resize windows to have the active buffer bigger than the
" others
set winwidth=84
set winheight=5
set winminheight=5
set winheight=999
set hlsearch
set autoindent
set encoding=utf-8
set fileencoding=utf-8
set colorcolumn=80
set backspace=2 " make backspace work like most other apps
" this setting makes the shell interactive so that aliases can be used from
" within vim
" This causes vim to stop after executing some commands (i.e. 'fg" needs to be
" sent to shell in order to bring vim back to foreground) This is kindof
" annoying, so I need to fix this at some point.
set shellcmdflag=-ic
" Syntax highlighting mapping
map <F11> :sp tags<CR>:%s/^\([^ :]*:\)\=\([^ ]*\).*/syntax keyword Tag \2/<CR>:wq! tags.vim<CR>/^<CR><F12>
map <F12> :so tags.vim<CR>
" make vim remember the position of the cursor when the file was last edited
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
" include autotags
source ~/.vim/autotag.vim
" CTAGS: execute ctags in current directory, whenever the file is saved
" autocmd BufWritePost * silent :!rm tags; ctags src/*; ctags -a tests/*;
" tags: include petsc tags
set tags=./tags,./TAGS,tags,TAGS,/usr/lib/petscdir/3.6.0/CTAGS
" Save fold views
autocmd BufWinLeave *.* mkview
autocmd BufWinEnter *.* silent loadview
" }}}
" Latex-suite settings --------------------{{{
" REQUIRED. This makes vim invoke Latex-Suite when you open a tex file.
filetype on
filetype indent on
filetype plugin on
" IMPORTANT: win32 users will need to have 'shellslash' set so that latex
" Note s.o.: having this option turned on in win64 can cause crashes.
" can be called correctly.
" set shellslash
" IMPORTANT: grep will sometimes skip displaying the file name if you
" search in a singe file. This will confuse Latex-Suite. Set your grep
" program to always generate a file-name.
set grepprg=grep\ -nH\ $*
" OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to
" 'plaintex' instead of 'tex', which results in vim-latex not being loaded.
" The following changes the default filetype back to 'tex':
let g:tex_flavor='latex'
" this is mostly a matter of taste. but LaTeX looks good with just a bit
" of indentation.
set sw=2
" TIP: if you write your \label's as \label{fig:something}, then if you
" type in \ref{fig: and press <C-n> you will automatically cycle through
" all the figure labels. Very useful!
set iskeyword+=:
" Next sets autocompletion of Latex to unicode
let g:latex_to_unicode_auto = 1
" There is something wrong with the debugging mode. This turns it off
" update 18.4.2015: The Issue seems to be resolved so this line is now
" commented out. Uncomment in case the issue comes up again.
" let g:Tex_GotoError=0
" Changing default output format to pdf
let g:Tex_DefaultTargetFormat='pdf'
let g:Tex_MultipleCompileFormats='pdf, aux'
let g:Tex_Flavor='pdflatex'
" }}}
" Mappings not specific to filetypes --------------------{{{
" The following lines are from the book 'learning vimscript the hard way'
"
" set mapleader to comma
let mapleader = ","
" Map the - and _ key to move a line up and down in the file
" Careful: when moving the top line, it will now be deleted.
" This is a bug and i haven't figured it out yet as this behaviour doesn't
" occur, when pressing ddkP as a normal sequence. update: I think this has
" something to do with the way that vim behaves when the mapping {rhs}
" includes a command that can't be executed for some reason. E.g. when the
" cursor is on the top line and 'k' is pressed. In that case, vim seems to
" abort the mapping.
nnoremap <leader>- ddp
nnoremap <leader>_ ddkP
" map <leader><c-u> in insert mode to turn the current word to uppercase and move the
" abort the mapping.
nnoremap <leader>- ddp
nnoremap <leader>_ ddkP
" map <leader><c-u> in insert mode to turn the current word to uppercase and move the
" cursor to the end of the word. So in the end the cursor (marked by =) will
" be as follows: WORD= . Will leave the editor in insert mode after finishing
" the command
inoremap <leader><c-u> <esc>viwUea
" map the spacekey to highlight (visual) the current word
nnoremap <leader><space> viw
" create mapping to edit and source vimrc quickly
nnoremap <leader>ev :split $MYVIMRC<cr>
nnoremap <leader>sv :source $MYVIMRC<cr>
" mapping to edit my notes file quickly
nnoremap <leader>en :split Desktop/notes.tex<cr>
" surround a word in double qoutes while in normal mode
nnoremap <leader>" viw<esc>a"<esc>hbi"<esc>lel
" mapping that encloses a selected visual area in double quotes
vnoremap <leader>" <esc>`<i"<esc>`>a"
" mappping H and L to go to beginning and end of line. Note that the default
" values for H and L are to go to bottom and top of window
nnoremap H 0
nnoremap L $
" mapping to get out of insertmode easier
inoremap jk <esc>
" show NERDTREE (mnemonics: 's'how 'n'erdtree)
nnoremap <leader>sn :NERDTree<cr>
" compile and run whatever file is currently being edited. Note that this
" functionality depends on the filetype, but the shortcut is universal to all
" filetypes.
" Mnemonics: 'r'un 'f'ile
"autocmd FileType python nnoremap <buffer> <leader>rf :!python %<cr>
" close all buffers except the current one.
" uses the script below
" Mnemonics: 'c'lose 'e'xcept
nnoremap <leader>ce :BufOnly<cr>
" mapping <leader>s to save a file. ':w' is annoying. Works in many modes. Mnemonics:
" 's'ave
inoremap <leader>s <esc>:w<cr>a
vnoremap <leader>s <esc>:w<cr>
nnoremap <leader>s :w<cr>
" Mapping to go to next placeholder
" Mnemonics: none, its just easy to type
" inoremap <leader>mm <esc>/<++><cr>:nohlsearch<cr>cf>
" Mapping to run Doxygen
nnoremap <leader>do :!doxygen Doxyfile; ln -s doc/html/index.html doc.html<cr>
" }}}
" Matlab file settings --------------------{{{
augroup filetype_matlab
autocmd!
autocmd FileType matlab nnoremap <buffer> <leader>c I%<space><esc>
augroup END
" Next is necessary for Matlab
source $VIMRUNTIME/macros/matchit.vim
autocmd BufEnter *.m compiler mlint
" }}}
" C file settings -------------------{{{
" First one simply appends an error-check at the given position (i-mode)
" or at the end of the line (n-mode)
" Mnemonics: 'err'or check
autocmd FileType c inoremap <leader>err CHKERRQ(ierr);
autocmd FileType c nnoremap <leader>err $aCHKERRQ(ierr);<esc>
" shortcut to wrap whole line with error check
" Mnemonics: 'w'rap 'err' check
autocmd FileType c nnoremap <leader>werr :call CHKERRQToggle()<cr>
" Shortcut to edit c syntax file quickly
autocmd FileType c nnoremap <leader>es :sp ~/.vim/after/syntax/c.vim<cr>
" Shortcut to edit a header file
" Mnemonics: 'e'dit 'h'eader
autocmd Filetype c nnoremap <leader>eh :split %<.h<cr>
" This function is responsible for toggling the CHKERRQ macro, see above
" autocmd
function CHKERRQToggle()
" first mark current position and return to start of line
normal! ma
normal! ^
" then check if the first word is 'ierr'
if expand("<cword>") == "ierr"
normal! d2w$dFCd$`a
else
execute "normal! iierr = \<esc>$aCHKERRQ(ierr);\<esc>`a"
endif
endfunction
" }}}
" Vimscript file settings --------------------{{{
augroup filetype_vim
autocmd!
autocmd FileType vim nnoremap <buffer> <leader>c I"<space><esc>
autocmd FileType vim setlocal foldmethod=marker
augroup END
" }}}
" Python filetype mappings user-created{{{
" Mapping to create print-statement.
" Mnemonics: 'c'reate 'p'rint
autocmd FileType python inoremap <leader>cp print<space>""<space>%<space>(<++>)<++><esc>F"i
" }}}
" Abbreviations not specific to filetypes --------------------{{{
iabbrev ssig Viele Grüße<cr>Sebastian Otten
" }}}
" close all buffers except this one {{{
" BufOnly.vim - Delete all the buffers except the current/named buffer.
"
" Copyright November 2003 by Christian J. Robinson <[email protected]>
"
" Distributed under the terms of the Vim license. See ":help license".
"
" Usage:
"
" :Bonly / :BOnly / :Bufonly / :BufOnly [buffer]
"
" Without any arguments the current buffer is kept. With an argument the
" buffer name/number supplied is kept.
command! -nargs=? -complete=buffer -bang Bonly
command! -nargs=? -complete=buffer -bang BufOnly
\ :call BufOnly('<args>', '<bang>')
function! BufOnly(buffer, bang)
if a:buffer == ''
" No buffer provided, use the current buffer.
let buffer = bufnr('%')
elseif (a:buffer + 0) > 0
" A buffer number was provided.
let buffer = bufnr(a:buffer + 0)
else
" A buffer name was provided.
let buffer = bufnr(a:buffer)
endif
if buffer == -1
echohl ErrorMsg
echomsg "No matching buffer for" a:buffer
echohl None
return
endif
let last_buffer = bufnr('$')
let delete_count = 0
let n = 1
while n <= last_buffer
if n != buffer && buflisted(n)
if a:bang == '' && getbufvar(n, '&modified')
echohl ErrorMsg
echomsg 'No write since last change for buffer'
\ n '(add ! to override)'
echohl None
else
silent exe 'bdel' . a:bang . ' ' . n
if ! buflisted(n)
let delete_count = delete_count+1
endif
endif
endif
let n = n+1
endwhile
if delete_count == 1
echomsg delete_count "buffer deleted"
elseif delete_count > 1
echomsg delete_count "buffers deleted"
endif
endfunction
" }}}
" Cleanup routines{{{
"clean up any searchhighlights
nohlsearch
" }}}
" Gundo settings {{{
nnoremap <leader>gu :GundoToggle<cr>
let g:gundo_width = 25
let g:gundo_preview_height = 20
" }}}
" Powerline settings {{{
" Powerline setup
" set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ 9
set laststatus=2
" Use 256 colours (Use this setting only if your terminal supports 256
" colours)
set t_Co=256
" }}}
" autohighlight script {{{
" Highlight all instances of word under cursor, when idle.
" Useful when studying strange source code.
" Type z/ to toggle highlighting on/off.
nnoremap z/ :if AutoHighlightToggle()<Bar>set hls<Bar>endif<CR>
function! AutoHighlightToggle()
let @/ = ''
if exists('#auto_highlight')
au! auto_highlight
augroup! auto_highlight
setl updatetime=4000
echo 'Highlight current word: off'
return 0
else
augroup auto_highlight
au!
au CursorHold * let @/ = '\V\<'.escape(expand('<cword>'), '\').'\>'
augroup end
setl updatetime=500
echo 'Highlight current word: ON'
return 1
endif
endfunction
" }}}
" YouCompleteMe Settings ----------------------{{{
let g:ycm_confirm_extra_conf=0
" }}}
" Livedown settings"{{{
" make sure that livedown is always run when entering a new buffer (i.e. the
" preview needs to be kept up to date) and that browser window is opened the
" first time, when vim is launched
let g:livedown_autorun=1
let g:livedown_open=1
" after vim is launched, turn off the automatic opening of windows or else
" there will be hundreds of windows
autocmd VimEnter *.markdown let g:livedown_open=0
"}}}