vim updates
[~madcoder/dotfiles.git] / vimrc
1 " {{{ settings
2
3 set nocompatible                " Use Vim defaults instead of 100% vi compatibility
4 set backspace=indent,eol,start  " more powerful backspacing
5
6 set autoindent                  " always set auto-indenting on
7 set autoread                    " reload unchanged files silentely
8 set clipboard=unnamed           " copy/paste to global clipboard
9 set hidden                      " allow to cycle and hide modified buffers
10 set nobackup                    " Don't keep a backup file
11 set backupcopy=auto,breakhardlink
12 set swapsync=
13 set esckeys                     " allow usage of curs keys within insert mode
14 set timeout
15 set ttimeoutlen=10
16 set timeoutlen=500              " set timout for esc to 50ms
17
18 set listchars=tab:\ \ ,trail:-,extends:>,precedes:<
19 set list
20 set joinspaces                  " insert two spaces after a period with every joining of lines.
21                                 " This is very nice!
22 set lazyredraw                  " [VIM5];  do not update screen while executing macros
23 set ttyfast
24 set magic                       " Use some magic in search patterns?  Certainly!
25 set modeline                    " Allow the last line to be a modeline - useful when
26                                 " the last line in sig gives the preferred text-width
27                                 " for replies.
28 set modelines=5
29 set pastetoggle=<F4>
30
31 set nonumber
32 set report=0                    " show a report when N lines were changed.
33                                 " report=0 thus means "show all changes"!
34
35 set laststatus=2                " show status line?  Yes, always!
36 set noruler                       " show cursor position?  Yep!
37 set statusline=[\ %f%m\ %r%y\ %=\ hex:%B\ \ %l,%c%V\ \ %P\ ]
38
39 set shiftwidth=4                " Number of spaces to use for each insertion of
40                                 " (auto)indent.
41 set shortmess=at                " Kind of messages to show.   Abbreviate them all!
42                                 " New since vim-5.0v: flag 'I' to suppress "intro message".
43 set scrolloff=2                 " context
44 set showcmd                     " Show current uncompleted command?  Absolutely!
45 set showmatch                   " Show the matching bracket for the last ')'?
46 set showmode                    " Show the current mode?  YEEEEEEEEESSSSSSSSSSS!
47
48 set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc,.cmi,.cmo
49                                 " Suffixes to ignore in file completion
50
51 set tabstop=8                   " tabstop
52 set softtabstop=4               " sts
53 set expandtab                   " expand tabs
54 set notextmode                  " no - I am using Vim on UNIX!
55 set textwidth=0                 " Don't wrap words by default
56 set cc=+1
57 set title                       " Permet de voir le tit. du doc. crt. ds les XTERM
58 set viminfo='1000,/1000,:1000,<1000,@1000,n~/.viminfo
59 set history=1000
60                                 " What info to store from an editing session
61                                 " in the viminfo file;  can be used at next session.
62 set undofile
63 set undodir=~/.cache/vim/
64 au BufWritePre /tmp/* setlocal noundofile
65 set sessionoptions=buffers,folds,localoptions,options,tabpages,help
66
67 set ignorecase                  " Do case insensitive matching
68 set incsearch                   " Incremental search
69 set hlsearch                    " hilight search
70
71
72 set whichwrap=<,>,[,]           "
73 set wildchar=<TAB>              " the char used for "expansion" on the command line
74                                 " default value is "<C-E>" but I prefer the tab key:
75 set wildmenu                    " Completion on the command line shows a menu
76 set wildmode=longest,full
77 set winminheight=0              " Minimum height of VIM's windows opened
78 set mouse=a
79 set mousefocus
80 set wrapmargin=1
81 set nowritebackup
82 set foldmethod=marker
83
84 set noequalalways
85 set eadirection=
86
87 set cpoptions-=C                " enable commands that continue on the next line
88
89 " use ctrl-n ctrl-n instead of ctrl-x ctrl-k
90 set complete-=k complete+=k
91
92 set tags=tags;/,.tags;/,TAGS;/
93
94 set cinoptions=
95 set cinoptions+=L0.5s          " align labels at 0.5 shiftwidth
96 set cinoptions+=:0.5s,=0.5s    " same for case labels and code following a label
97 set cinoptions+=g0.5s,h0.5s    " same for c++ stuff
98 set cinoptions+=t0             " type on the line before the functions is not idented
99 set cinoptions+=(0,Ws          " indent in functions ( ... ) when it breaks
100 set cinoptions+=m1             " aligh the closing ) properly
101 set cinoptions+=j1             " java/javscript -> fixes blocks
102 "set cinoptions+=l0.5s          " align code after label ignoring braces.
103
104 set diffopt=filler,context:5,iwhite
105 set fillchars+=diff:\ ,vert:│
106
107 set makeprg=LC_ALL=C\ make\ MONOCHROME=1
108 set grepprg=egrep\ --exclude='*.blk.c'\ --exclude='*.blkk.cc'\ -n\ $*\ /dev/null
109
110 exe "set path=." . system("echo | cpp -v 2>&1 | grep '^ .*/include' | tr -d \"\n\" | tr \" \" \",\"")
111 set path+=.;/
112
113 " }}}
114 " {{{ vim 7 settings
115
116 if version >= 700
117     set autochdir              " autochdir...
118     set virtualedit=onemore    " Yes I want to be able to be "on \n"
119     set spelllang=en_us,fr
120     set pumheight=16
121
122     " make <enter> work in popup
123     inoremap <cr> <C-R>=pumvisible() ? "\<lt>C-Y>" : "\<lt>cr>"<cr>
124 else
125     au BufEnter * :lcd %:p:h
126 endif
127
128 " }}}
129 " {{{ Window magic
130
131 function! DeleteBuffer()
132    let bid = bufnr("%")
133    bnext
134    exe "bdel " . bid
135    redraw
136 endfunction
137
138 map <C-W>d :call DeleteBuffer()<cr>
139 "map <C-W>k :bd<cr>
140 map <C-W>g :bo cw 8<cr>
141
142 " }}}
143 " {{{ Mappings
144
145 " {{{ Tab Key magic ...
146 vmap <tab> >gv
147 vmap <bs> <gv
148
149 function! TabAlign()
150     let col  = col('.')
151     let lnum = line('.')
152
153     while lnum > 1
154         let lnum = lnum - 1
155         let ln = strpart(getline(lnum), col-1)
156         let ms = matchstr(ln, '[^ ]*  *[^ ]')
157         if ms != ""
158             break
159         endif
160     endwhile
161
162     if lnum == 1
163         return "\<Tab>"
164     else
165         let @z = substitute(strpart(ms, 0, strlen(ms)-1), '.', ' ', 'g')
166         if col > strlen(getline('.'))
167             return "\<C-O>\"zp"
168         else
169             return "\<C-O>\"zP"
170         endif
171     endif
172
173 endfunction
174
175 function! CleverTab()
176     let c = strpart(getline('.'), col('.')-2, 1)
177     if c == ' ' || c == '\t' || c == ''
178         return TabAlign()
179     else
180         return "\<C-P>"
181     endif
182 endfunction
183 inoremap <Tab> <C-R>=CleverTab()<CR>
184 inoremap <S-Tab> <C-R>=TabAlign()<CR>
185
186 " }}}
187
188 map + :cnext<cr>
189 map - :cprevious<cr>
190 map <kPlus> :cnext<cr>
191 map <kMinus> :cprevious<cr>
192
193 map Q gq
194
195 noremap  <F2>   :set mouse=a<cr>
196 noremap  <F3>   :set mouse=h<cr>
197 noremap  <F5>   :source ~/.vimrc<cr>
198
199 inoremap <F6>   <c-o>mzviwU`z
200 noremap  <F7>   :set ai!<CR>:set ai?<cr>
201 inoremap <F7>   <space><esc><F7>a<bs>
202
203 noremap  <F11>  :make!<cr>:bo cw 8<cr><cr>
204 inoremap <F11>  <esc>:make!<cr>:bo cw 8<cr><cr>
205 noremap  <S-F11> :make clean<cr><cr>
206 inoremap <S-F11> <esc>:make clean<cr><cr>
207
208 " }}}
209 "{{{ FTYPES
210
211 if has("autocmd")
212     filetype plugin indent on
213     syntax on
214
215     au Syntax {cpp,c,javascript} runtime syntax/doxygen.vim
216
217     au BufReadPost *
218                 \ if line("'\"") > 0 && line("'\"") <= line("$") |
219                 \   exe "normal g`\"" |
220                 \ endif
221
222     au VimLeave * mksession! ~/.cache/session.vim
223
224     au FileType debchangelog normal zO
225
226     au FileType javascript setlocal cindent tw=78 iskeyword+=$
227     au FileType actionscript setlocal cindent tw=78 iskeyword+=$ noignorecase ff=dos
228     au FileType mail setlocal noet iskeyword+=- tw=72
229
230     au FileType haxe setlocal tw=78 noignorecase cin ai
231     au FileType c,cpp setlocal tw=78 noignorecase "fo-=ro
232     au FileType ocaml,acute,omlet setlocal sw=2 sts=2 tw=78
233     au FileType php  setlocal et fo+=ro tw=78 indentexpr= cin
234     au FileType python setlocal foldmethod=indent foldnestmax=1
235
236     au FileType diff   setlocal nofoldenable
237
238     au FileType html,xhtml,xml setlocal sw=2
239     au FileType mail setlocal spell
240
241     " make error list special
242     au BufRead quickfix setlocal nobuflisted nowrap number
243
244     au FileType svn setlocal spell tw=76
245     au FileType git setlocal spell tw=76
246
247     au BufRead,BufNewFile */dev/scm/git/* setlocal noet sw=8
248
249     let ocaml_noindent_let=1
250     let git_diff_spawn_mode=2
251     let git_diff_opts = "--no-renames --summary -C -M"
252     let c_gnu=1
253     let c_space_errors=1
254     let c_no_curly_error=1
255
256     let g:bufExplorerFindActive=0
257     let g:bufExplorerSplitOutPathName=1
258     let g:bufExplorerShowRelativePath=0
259     let g:bufExplorerSortBy='fullpath'
260
261     let g:is_bash=1
262     let g:sh_fold_enabled=1
263
264     let g:debchangelog_fold_enable = 1
265     let g:debcontrol_fold_enable = 1
266 endif " has ("autocmd")
267
268 " }}}
269 " {{{ PLUGINS
270
271 runtime macros/matchit.vim
272 "runtime macros/justify.vim
273
274 runtime ftplugin/man.vim
275 nmap ! :exe "Man" expand("<cword>")<cr>
276
277 " }}}
278 " {{{ COLORS, GUI and FOLDING
279
280 set background=light
281 hi clear
282 if exists("syntax_on")
283    syntax reset
284 endif
285
286 if has("gui_running")
287     set guioptions=eit
288     set guifont=terminus
289     set guicursor=a:blinkon0
290     set background=light
291
292     fun! GuiTabLabel()
293         let label = ''
294         let bufnrlist = tabpagebuflist(v:lnum)
295
296         " Append the number of windows in the tab page if more than one
297         let wincount = tabpagewinnr(v:lnum, '$')
298         let label .= wincount
299
300         " Add '[*]' if one of the buffers in the tab page is modified
301         for bufnr in bufnrlist
302             if getbufvar(bufnr, "&modified")
303                 let label .= '[*]'
304                 break
305             endif
306         endfor
307
308
309         if exists("t:tabname")
310             return t:tabname . ': ' . label
311         else
312             return label . '[' . bufname(bufnrlist[tabpagewinnr(v:lnum) - 1]) .']'
313         endif
314     endf
315     set guitablabel=%{GuiTabLabel()}
316 endif
317
318 fun! <SID>Y(a)
319     if strlen(a:a) != 6 || a:a == "yellow"
320         return a:a
321     endif
322     if has("gui_running")
323         return "#".a:a
324     endif
325     let l:r = ("0x" . strpart(a:a, 0, 2)) + 0
326     let l:g = ("0x" . strpart(a:a, 2, 2)) + 0
327     let l:b = ("0x" . strpart(a:a, 4, 2)) + 0
328     if &t_Co == 88
329         let l:gray  = 10
330         let l:cube  = 4
331         let l:shift = 79
332     else
333         let l:gray  = 26
334         let l:cube  = 6
335         let l:shift = 232
336     endif
337
338     if l:r * l:gray / 256 == l:g * l:gray / 256 && l:r * l:gray / 256 == l:b * l:gray / 256
339         let l:s = l:r * l:gray / 256
340         if l:s == 0
341             return "black"
342         elseif l:s == l:gray - 1
343             return "white"
344         else
345             return l:shift + l:s
346         endif
347     endif
348     let l:x = ((l:r * l:cube) / 256)
349     let l:y = ((l:g * l:cube) / 256)
350     let l:z = ((l:b * l:cube) / 256)
351     return 16 + ((l:x * l:cube + l:y) * l:cube) + l:z
352 endfun
353
354 fun! <SID>myhi(cls, m, fg, bg)
355     if has("gui_running")
356         exec "hi ".a:cls." gui=".a:m." guifg=".<SID>Y(a:fg)." guibg=".<SID>Y(a:bg)
357     else
358         exec "hi ".a:cls." cterm=".a:m." ctermfg=".<SID>Y(a:fg)." ctermbg=".<SID>Y(a:bg)
359     endif
360 endfun
361
362 if has("gui_running") || &t_Co >= 88
363     if has("gui_running")
364         exec <SID>myhi("Normal",       "none",       "dfdfdf",    "00000f")
365         exec <SID>myhi("MoreMsg",      "none",       "dfdfdf",    "00000f")
366     else
367         exec <SID>myhi("Normal",       "none",       "dfdfdf",    "NONE")
368         exec <SID>myhi("MoreMsg",      "none",       "dfdfdf",    "NONE")
369     endif
370     exec <SID>myhi("ColorColumn",  "none",       "NONE",      "0f0f0f")
371     exec <SID>myhi("Comment",      "none",       "afafff",    "0f0f0f")
372     exec <SID>myhi("Folded",       "none",       "afafff",    "0f0f0f")
373
374     exec <SID>myhi("SpecialKey",   "none",       "dfdfdf",    "0f0f0f")
375     exec <SID>myhi("Todo",         "underline",  "yellow",    "2f2f2f")
376     exec <SID>myhi("Error",        "bold",       "white",     "red")
377
378     exec <SID>myhi("Function",     "none",       "4fdfdf",    "NONE")
379     exec <SID>myhi("Identifier",   "none",       "4fdfdf",    "NONE")
380
381     exec <SID>myhi("Cursor",       "reverse",    "dfdfdf",    "black")
382     exec <SID>myhi("Visual",       "none",       "NONE",      "2f2f2f")
383     exec <SID>myhi("IncSearch",    "none",       "black",     "yellow")
384     exec <SID>myhi("Search",       "none",       "black",     "yellow")
385
386     exec <SID>myhi("StatusLine",   "none",       "yellow",    "2f2f2f")
387     exec <SID>myhi("StatusLineNc", "none",       "dfdfdf",    "1c1c1c")
388     exec <SID>myhi("WildMenu",     "none",       "white",     "0f0f0f")
389     exec <SID>myhi("VertSplit",    "none",       "darkgray",  "0f0f0f")
390     exec <SID>myhi("NonText",      "none",       "darkgray",  "NONE")
391
392     exec <SID>myhi("MatchParen",   "none",       "white",     "0f0f0f")
393     exec <SID>myhi("Pmenu",        "none",       "dfdfdf",    "0f0f0f")
394     exec <SID>myhi("PmenuSel",     "none",       "white",     "3f3f7f")
395     exec <SID>myhi("PmenuSbar",    "none",       "white",     "0f0f0f")
396     exec <SID>myhi("PmenuThumb",   "none",       "3f3f7f",    "3f3f7f")
397
398     exec <SID>myhi("SpellBad",     "none",       "NONE",      "800000")
399     exec <SID>myhi("SpellCap",     "none",       "NONE",      "004000")
400     exec <SID>myhi("SpellLocal",   "none",       "NONE",      "004000")
401     exec <SID>myhi("SpellRare",    "none",       "NONE",      "NONE")
402
403     exec <SID>myhi("Label",        "none",       "bf7f00",    "NONE")
404     exec <SID>myhi("Conditional",  "none",       "bf7f00",    "NONE")
405     exec <SID>myhi("Repeat",       "none",       "bf7f00",    "NONE")
406     exec <SID>myhi("Statement",    "none",       "bf7f00",    "NONE")
407
408     exec <SID>myhi("StorageClass", "none",       "20b020",    "NONE")
409     exec <SID>myhi("Type",         "none",       "20b020",    "NONE")
410     exec <SID>myhi("Structure",    "none",       "20b020",    "NONE")
411     exec <SID>myhi("Directory",    "none",       "20b020",    "NONE")
412
413     exec <SID>myhi("Include",      "none",       "bf0fbf",    "NONE")
414     exec <SID>myhi("PreProc",      "none",       "bf0fbf",    "NONE")
415     exec <SID>myhi("Macro",        "none",       "bf0fbf",    "NONE")
416     exec <SID>myhi("SpecialChar",  "none",       "bf0fbf",    "NONE")
417
418     exec <SID>myhi("Character",    "none",       "bf0f0f",    "NONE")
419     exec <SID>myhi("String",       "none",       "bf0f0f",    "NONE")
420     exec <SID>myhi("Constant",     "none",       "bf0f0f",    "NONE")
421
422     " diff
423     exec <SID>myhi("DiffAdd",      "none",       "NONE",      "002f0f")
424     exec <SID>myhi("DiffDelete",   "none",       "NONE",      "2f000f")
425     exec <SID>myhi("DiffChange",   "none",       "NONE",      "00003f")
426     exec <SID>myhi("DiffText",     "underline",  "NONE",      "00003f")
427     exec <SID>myhi("diffRemoved",  "none",       "bf0fbf",    "NONE")
428
429     " C
430     exec <SID>myhi("cFunction",    "none",       "b0b0b0",    "NONE")
431
432     " Doxygen
433     if !exists(':SynLink')
434         command -nargs=+ SynLink hi def link <args>
435     endif
436     SynLink doxygenSpecialTypeOnelineDesc  doxygenBrief
437     SynLink doxygenSpecialOnelineDesc      doxygenBrief
438     SynLink doxygenSpecialHeading          doxygenBrief
439     SynLink doxygenParamDirection          doxygenSpecial
440
441     exec <SID>myhi("doxygenComment",   "none",       "6060ff",    "0f0f0f")
442     exec <SID>myhi("doxygenBrief",     "none",       "6060ff",    "0f0f0f")
443     exec <SID>myhi("doxygenPrev",      "none",       "6060ff",    "0f0f0f")
444     exec <SID>myhi("doxygenParam",     "none",       "6060ff",    "0f0f0f")
445     exec <SID>myhi("doxygenSpecial",   "none",       "6060ff",    "0f0f0f")
446     exec <SID>myhi("doxygenParamName", "underline",  "6060ff",    "0f0f0f")
447 else
448     hi Comment      cterm=none       ctermfg=blue       ctermbg=none
449     hi Folded       cterm=none       ctermfg=brown      ctermbg=none
450
451     hi Visual       cterm=reverse    ctermfg=none       ctermbg=none
452     hi IncSearch    cterm=underline  ctermfg=white      ctermbg=none
453     hi Search       cterm=underline  ctermfg=white      ctermbg=none
454
455     hi StatusLine   cterm=none       ctermfg=white      ctermbg=blue
456     hi StatusLineNc cterm=none       ctermfg=black      ctermbg=white
457     hi WildMenu     cterm=none       ctermfg=white      ctermbg=none
458     hi VertSplit    cterm=none       ctermfg=darkgray   ctermbg=none
459     hi NonText      cterm=none       ctermfg=darkgray   ctermbg=none
460
461     hi MatchParen   cterm=underline  ctermfg=none       ctermbg=none
462     hi Pmenu        cterm=none       ctermfg=gray       ctermbg=black
463     hi PmenuSel     cterm=none       ctermfg=black      ctermbg=gray
464     hi PmenuSbar    cterm=none       ctermfg=blue       ctermbg=blue
465     hi PmenuThumb   cterm=none       ctermfg=gray       ctermbg=gray
466
467     hi SpellBad     cterm=underline  ctermfg=lightred   ctermbg=none
468     hi SpellCap     cterm=none       ctermfg=lightred   ctermbg=none
469     hi SpellLocal   cterm=underline  ctermfg=darkgreen  ctermbg=none
470     hi SpellRare    cterm=none       ctermfg=none       ctermbg=none
471 endif
472
473 " Custom
474 hi def link htmlTag htmlStatement
475 hi def link htmlEndTag htmlStatement
476
477 " }}}