claws fix
[~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 title                       " Permet de voir le tit. du doc. crt. ds les XTERM
57 set viminfo='1000,/1000,:1000,<1000,@1000,n~/.viminfo
58 set history=1000
59                                 " What info to store from an editing session
60                                 " in the viminfo file;  can be used at next session.
61 set sessionoptions=buffers,folds,localoptions,options,tabpages,help
62
63 set ignorecase                  " Do case insensitive matching
64 set incsearch                   " Incremental search
65 set hlsearch                    " hilight search
66
67
68 set whichwrap=<,>,[,]           "
69 set wildchar=<TAB>              " the char used for "expansion" on the command line
70                                 " default value is "<C-E>" but I prefer the tab key:
71 set wildmenu                    " Completion on the command line shows a menu
72 set wildmode=longest,full
73 set winminheight=0              " Minimum height of VIM's windows opened
74 set mouse=a
75 set mousefocus
76 set wrapmargin=1
77 set nowritebackup
78 set foldmethod=marker
79
80 set noequalalways
81 set eadirection=
82
83 set cpoptions-=C                " enable commands that continue on the next line
84
85 " use ctrl-n ctrl-n instead of ctrl-x ctrl-k
86 set complete-=k complete+=k
87
88 set tags=tags;/,.tags;/,TAGS;/
89
90 set cinoptions=
91 set cinoptions+=t0             " type on the line before the functions is not idented
92 set cinoptions+=:2,=2          " indent case ...: of 2 from the switch {
93 set cinoptions+=(0,Ws          " indent in functions ( ... ) when it breaks
94 set cinoptions+=g2,h2          " indent C++ scope of 2, and the members from 2 from it
95 set cinoptions+=m1             " aligh the closing ) properly
96 "set cinoptions+=l1            " align closing brace with the case
97 "set cinoptions+=b1            " align break; with case ...:
98
99 set diffopt=filler,context:5,iwhite
100 set fillchars+=diff:\ ,vert:│
101
102 set makeprg=LC_ALL=C\ make\ MONOCHROME=1
103 set grepprg=egrep\ -n\ $*\ /dev/null
104
105 exe "set path=." . system("echo | cpp -v 2>&1 | grep '^ .*/include' | tr -d \"\n\" | tr \" \" \",\"")
106 set path+=.;/
107
108 " }}}
109 " {{{ vim 7 settings
110
111 if version >= 700
112     set autochdir              " autochdir...
113     set virtualedit=onemore    " Yes I want to be able to be "on \n"
114     set spelllang=en_us,fr
115     set pumheight=16
116
117     " make <enter> work in popup
118     inoremap <cr> <C-R>=pumvisible() ? "\<lt>C-Y>" : "\<lt>cr>"<cr>
119 else
120     au BufEnter * :lcd %:p:h
121 endif
122
123 " }}}
124 " {{{ Window magic
125
126 function! DeleteBuffer()
127    let bid = bufnr("%")
128    bnext
129    exe "bdel " . bid
130    redraw
131 endfunction
132
133 map <C-W>d :call DeleteBuffer()<cr>
134 "map <C-W>k :bd<cr>
135 map <C-W>g :bo cw 8<cr>
136
137 " }}}
138 " {{{ Mappings
139
140 " {{{ Tab Key magic ...
141 vmap <tab> >gv
142 vmap <bs> <gv
143
144 function! TabAlign()
145     let col  = col('.')
146     let lnum = line('.')
147
148     while lnum > 1
149         let lnum = lnum - 1
150         let ln = strpart(getline(lnum), col-1)
151         let ms = matchstr(ln, '[^ ]*  *[^ ]')
152         if ms != ""
153             break
154         endif
155     endwhile
156
157     if lnum == 1
158         return "\<Tab>"
159     else
160         let @z = substitute(strpart(ms, 0, strlen(ms)-1), '.', ' ', 'g')
161         if col > strlen(getline('.'))
162             return "\<C-O>\"zp"
163         else
164             return "\<C-O>\"zP"
165         endif
166     endif
167
168 endfunction
169
170 function! CleverTab()
171     let c = strpart(getline('.'), col('.')-2, 1)
172     if c == ' ' || c == '\t' || c == ''
173         return TabAlign()
174     else
175         return "\<C-P>"
176     endif
177 endfunction
178 inoremap <Tab> <C-R>=CleverTab()<CR>
179 inoremap <S-Tab> <C-R>=TabAlign()<CR>
180
181 " }}}
182
183 map + :cn<cr>
184 map - :cp<cr>
185 map <kPlus> :cn<cr>
186 map <kMinus> :cp<cr>
187
188 map Q gq
189
190 noremap  <F2>   :set mouse=a<cr>
191 noremap  <F3>   :set mouse=h<cr>
192 noremap  <F5>   :source ~/.vimrc<cr>
193
194 inoremap <F6>   <c-o>mzviwU`z
195 noremap  <F7>   :set ai!<CR>:set ai?<cr>
196 inoremap <F7>   <space><esc><F7>a<bs>
197
198 noremap  <F9>   :bp<cr>
199 inoremap <F9>   <esc>:bp<cr>
200 noremap  <F10>  :bn<cr>
201 inoremap <F10>  <esc>:bn<cr>
202 noremap  <F11>  :make!<cr>:bo cw 8<cr><cr>
203 inoremap <F11>  <esc>:make!<cr>:bo cw 8<cr><cr>
204 noremap  <S-F11> :make clean<cr><cr>
205 inoremap <S-F11> <esc>:make clean<cr><cr>
206
207 " }}}
208 "{{{ FTYPES
209
210 if has("autocmd")
211     filetype plugin indent on
212     syntax on
213
214     au BufReadPost *
215                 \ if line("'\"") > 0 && line("'\"") <= line("$") |
216                 \   exe "normal g`\"" |
217                 \ endif
218
219     au VimLeave * mksession! ~/.cache/session.vim
220
221     au FileType debchangelog normal zO
222
223     au FileType javascript setlocal cindent tw=78 iskeyword+=$
224     au FileType actionscript setlocal cindent tw=78 iskeyword+=$ noignorecase ff=dos
225     au FileType mail setlocal noet iskeyword+=- tw=72
226
227     au FileType haxe setlocal tw=78 noignorecase cin ai
228     au FileType c,cpp setlocal tw=78 noignorecase "fo-=ro
229     au FileType ocaml,acute,omlet setlocal sw=2 sts=2 tw=78
230     au FileType php  setlocal et fo+=ro tw=78 indentexpr= cin
231     au FileType python setlocal foldmethod=indent foldnestmax=1
232
233     au FileType diff   setlocal nofoldenable
234
235     au FileType html,xhtml,xml setlocal sw=2
236     au FileType mail setlocal spell
237
238     " make error list special
239     au BufRead quickfix setlocal nobuflisted nowrap number
240
241     au FileType svn setlocal spell tw=76
242     au FileType git setlocal spell tw=76
243
244     au BufRead,BufNewFile */dev/scm/git/* setlocal noet sw=8
245
246     let ocaml_noindent_let=1
247     let git_diff_spawn_mode=2
248     let git_diff_opts = "--no-renames --summary -C -M"
249     let c_gnu=1
250     let c_space_errors=1
251     let c_no_curly_error=1
252
253     let g:bufExplorerFindActive=0
254     let g:bufExplorerSplitOutPathName=1
255     let g:bufExplorerShowRelativePath=0
256     let g:bufExplorerSortBy='fullpath'
257
258     let g:is_bash=1
259     let g:sh_fold_enabled=1
260
261     let g:debchangelog_fold_enable = 1
262     let g:debcontrol_fold_enable = 1
263 endif " has ("autocmd")
264
265 " }}}
266 " {{{ PLUGINS
267
268 runtime macros/matchit.vim
269 "runtime macros/justify.vim
270
271 runtime ftplugin/man.vim
272 nmap ! :exe "Man" expand("<cword>")<cr>
273
274 " }}}
275 " {{{ COLORS, GUI and FOLDING
276
277 set background=light
278 hi clear
279 if exists("syntax_on")
280    syntax reset
281 endif
282
283 if has("gui_running")
284     set guioptions=eit
285     set guifont=terminus
286     set guicursor=a:blinkon0
287     set background=light
288
289     fun! GuiTabLabel()
290         let label = ''
291         let bufnrlist = tabpagebuflist(v:lnum)
292
293         " Append the number of windows in the tab page if more than one
294         let wincount = tabpagewinnr(v:lnum, '$')
295         let label .= wincount
296
297         " Add '[*]' if one of the buffers in the tab page is modified
298         for bufnr in bufnrlist
299             if getbufvar(bufnr, "&modified")
300                 let label .= '[*]'
301                 break
302             endif
303         endfor
304
305
306         if exists("t:tabname")
307             return t:tabname . ': ' . label
308         else
309             return label . '[' . bufname(bufnrlist[tabpagewinnr(v:lnum) - 1]) .']'
310         endif
311     endf
312     set guitablabel=%{GuiTabLabel()}
313 endif
314
315 fun! <SID>Y(a)
316     if strlen(a:a) != 6 || a:a == "yellow"
317         return a:a
318     endif
319     if has("gui_running")
320         return "#".a:a
321     endif
322     let l:r = ("0x" . strpart(a:a, 0, 2)) + 0
323     let l:g = ("0x" . strpart(a:a, 2, 2)) + 0
324     let l:b = ("0x" . strpart(a:a, 4, 2)) + 0
325     if &t_Co == 88
326         let l:gray  = 10
327         let l:cube  = 4
328         let l:shift = 79
329     else
330         let l:gray  = 26
331         let l:cube  = 6
332         let l:shift = 232
333     endif
334
335     if l:r * l:gray / 256 == l:g * l:gray / 256 && l:r * l:gray / 256 == l:b * l:gray / 256
336         let l:s = l:r * l:gray / 256
337         if l:s == 0
338             return "black"
339         elseif l:s == l:gray - 1
340             return "white"
341         else
342             return l:shift + l:s
343         endif
344     endif
345     let l:x = ((l:r * l:cube) / 256)
346     let l:y = ((l:g * l:cube) / 256)
347     let l:z = ((l:b * l:cube) / 256)
348     return 16 + ((l:x * l:cube + l:y) * l:cube) + l:z
349 endfun
350
351 fun! <SID>myhi(cls, m, fg, bg)
352     if has("gui_running")
353         exec "hi ".a:cls." gui=".a:m." guifg=".<SID>Y(a:fg)." guibg=".<SID>Y(a:bg)
354     else
355         exec "hi ".a:cls." cterm=".a:m." ctermfg=".<SID>Y(a:fg)." ctermbg=".<SID>Y(a:bg)
356     endif
357 endfun
358
359 if has("gui_running") || &t_Co >= 88
360     if has("gui_running")
361         exec <SID>myhi("Normal",       "none",       "dfdfdf",    "00000f")
362         exec <SID>myhi("MoreMsg",      "none",       "dfdfdf",    "00000f")
363     else
364         exec <SID>myhi("Normal",       "none",       "dfdfdf",    "NONE")
365         exec <SID>myhi("MoreMsg",      "none",       "dfdfdf",    "NONE")
366     endif
367     exec <SID>myhi("Comment",      "none",       "afafff",    "0f0f0f")
368     exec <SID>myhi("Folded",       "none",       "afafff",    "0f0f0f")
369
370     exec <SID>myhi("SpecialKey",   "none",       "dfdfdf",    "0f0f0f")
371     exec <SID>myhi("Todo",         "underline",  "yellow",    "2f2f2f")
372     exec <SID>myhi("Error",        "bold",       "white",     "red")
373
374     exec <SID>myhi("Function",     "none",       "4fdfdf",    "NONE")
375     exec <SID>myhi("Identifier",   "none",       "4fdfdf",    "NONE")
376
377     exec <SID>myhi("Cursor",       "reverse",    "dfdfdf",    "black")
378     exec <SID>myhi("Visual",       "none",       "NONE",      "2f2f2f")
379     exec <SID>myhi("IncSearch",    "none",       "black",     "yellow")
380     exec <SID>myhi("Search",       "none",       "black",     "yellow")
381
382     exec <SID>myhi("StatusLine",   "none",       "yellow",    "2f2f2f")
383     exec <SID>myhi("StatusLineNc", "none",       "dfdfdf",    "1c1c1c")
384     exec <SID>myhi("WildMenu",     "none",       "white",     "0f0f0f")
385     exec <SID>myhi("VertSplit",    "none",       "darkgray",  "0f0f0f")
386     exec <SID>myhi("NonText",      "none",       "darkgray",  "NONE")
387
388     exec <SID>myhi("MatchParen",   "none",       "white",     "0f0f0f")
389     exec <SID>myhi("Pmenu",        "none",       "dfdfdf",    "0f0f0f")
390     exec <SID>myhi("PmenuSel",     "none",       "white",     "3f3f7f")
391     exec <SID>myhi("PmenuSbar",    "none",       "white",     "0f0f0f")
392     exec <SID>myhi("PmenuThumb",   "none",       "3f3f7f",    "3f3f7f")
393
394     exec <SID>myhi("SpellBad",     "none",       "NONE",      "800000")
395     exec <SID>myhi("SpellCap",     "none",       "NONE",      "004000")
396     exec <SID>myhi("SpellLocal",   "none",       "NONE",      "004000")
397     exec <SID>myhi("SpellRare",    "none",       "NONE",      "NONE")
398
399     exec <SID>myhi("Label",        "none",       "bf7f00",    "NONE")
400     exec <SID>myhi("Conditional",  "none",       "bf7f00",    "NONE")
401     exec <SID>myhi("Repeat",       "none",       "bf7f00",    "NONE")
402     exec <SID>myhi("Statement",    "none",       "bf7f00",    "NONE")
403
404     exec <SID>myhi("StorageClass", "none",       "20b020",    "NONE")
405     exec <SID>myhi("Type",         "none",       "20b020",    "NONE")
406     exec <SID>myhi("Structure",    "none",       "20b020",    "NONE")
407     exec <SID>myhi("Directory",    "none",       "20b020",    "NONE")
408
409     exec <SID>myhi("Include",      "none",       "bf0fbf",    "NONE")
410     exec <SID>myhi("PreProc",      "none",       "bf0fbf",    "NONE")
411     exec <SID>myhi("Macro",        "none",       "bf0fbf",    "NONE")
412     exec <SID>myhi("SpecialChar",  "none",       "bf0fbf",    "NONE")
413
414     exec <SID>myhi("Character",    "none",       "bf0f0f",    "NONE")
415     exec <SID>myhi("String",       "none",       "bf0f0f",    "NONE")
416     exec <SID>myhi("Constant",     "none",       "bf0f0f",    "NONE")
417
418     " diff
419     exec <SID>myhi("DiffAdd",      "none",       "NONE",      "002f0f")
420     exec <SID>myhi("DiffDelete",   "none",       "NONE",      "2f000f")
421     exec <SID>myhi("DiffChange",   "none",       "NONE",      "00003f")
422     exec <SID>myhi("DiffText",     "underline",  "NONE",      "00003f")
423     exec <SID>myhi("diffRemoved",  "none",       "bf0fbf",    "NONE")
424
425     " C
426     exec <SID>myhi("cFunction",    "none",       "b0b0b0",    "NONE")
427 else
428     hi Comment      cterm=none       ctermfg=blue       ctermbg=none
429     hi Folded       cterm=none       ctermfg=brown      ctermbg=none
430
431     hi Visual       cterm=reverse    ctermfg=none       ctermbg=none
432     hi IncSearch    cterm=underline  ctermfg=white      ctermbg=none
433     hi Search       cterm=underline  ctermfg=white      ctermbg=none
434
435     hi StatusLine   cterm=none       ctermfg=white      ctermbg=blue
436     hi StatusLineNc cterm=none       ctermfg=black      ctermbg=white
437     hi WildMenu     cterm=none       ctermfg=white      ctermbg=none
438     hi VertSplit    cterm=none       ctermfg=darkgray   ctermbg=none
439     hi NonText      cterm=none       ctermfg=darkgray   ctermbg=none
440
441     hi MatchParen   cterm=underline  ctermfg=none       ctermbg=none
442     hi Pmenu        cterm=none       ctermfg=gray       ctermbg=black
443     hi PmenuSel     cterm=none       ctermfg=black      ctermbg=gray
444     hi PmenuSbar    cterm=none       ctermfg=blue       ctermbg=blue
445     hi PmenuThumb   cterm=none       ctermfg=gray       ctermbg=gray
446
447     hi SpellBad     cterm=underline  ctermfg=lightred   ctermbg=none
448     hi SpellCap     cterm=none       ctermfg=lightred   ctermbg=none
449     hi SpellLocal   cterm=underline  ctermfg=darkgreen  ctermbg=none
450     hi SpellRare    cterm=none       ctermfg=none       ctermbg=none
451 endif
452
453 " Custom
454 hi def link htmlTag htmlStatement
455 hi def link htmlEndTag htmlStatement
456
457 " }}}