dotfiles/vim/vimrc

167 lines
3.7 KiB
VimL
Raw Normal View History

2013-06-01 23:09:59 +00:00
" Ma conf vim - Frank
2013-09-10 16:02:12 +00:00
execute pathogen#infect()
2013-08-06 10:18:27 +00:00
2013-06-01 23:09:59 +00:00
syntax on
2013-09-30 07:49:46 +00:00
color desert
hi clear SpellBad
hi SpellBad cterm=underline,bold ctermfg=lightblue
set spell
set spelllang=en,fr
2013-06-01 23:09:59 +00:00
2013-08-04 15:50:26 +00:00
2013-06-01 23:09:59 +00:00
"set nocompatible "fuck you !. impossible de backspace, sinon
2013-08-22 14:26:45 +00:00
set backspace=indent,eol,start
2013-06-01 23:09:59 +00:00
"set ruler
set number
set ts=8 "Un tab, huit espaces
set noexpandtab "On veut pas remplacer tab -> espace
set wrap "Une grande ligne continue à la ligne
2013-11-01 15:45:53 +00:00
"set mouse=a
2013-06-01 23:09:59 +00:00
set hlsearch "On souligne les mots cherchés
set incsearch "recherche peu à peu
set ignorecase
set foldmethod=marker
2013-08-06 10:18:27 +00:00
2013-09-30 07:49:46 +00:00
set cul "souligner la ligne actuelle
2013-06-01 23:09:59 +00:00
set cursorline
2013-10-14 09:22:08 +00:00
hi CursorLine term=bold cterm=bold
"ctermbg=lightblack
2013-06-01 23:09:59 +00:00
set showcmd "on affiche la commande qu'on écrit
set laststatus=2
set statusline=
2013-09-04 21:27:49 +00:00
set statusline +=%5*%{&ff}%* "file format
set statusline +=%3*%y%* "file type
set statusline +=%4*\ %<%F%* "full path
set statusline +=%2*%m%* "modified flag
set statusline +=%1*%=%5l%* "current line
set statusline +=%2*/%L%* "total lines
set statusline +=%1*%4v\ %* "virtual column number
set statusline +=%2*0x%04B\ %* "character under cursor
2013-06-01 23:09:59 +00:00
hi User1 guifg=#eea040 guibg=#222222
hi User2 guifg=#dd3333 guibg=#222222
hi User3 guifg=#ff66ff guibg=#222222
hi User4 guifg=#a0ee40 guibg=#222222
hi User5 guifg=#eeee40 guibg=#222222
2013-10-06 17:55:14 +00:00
filetype plugin on
filetype indent on
2013-06-01 23:09:59 +00:00
noremap <S-Space> <Esc>
noremap j gj
noremap k gk
2013-09-04 21:27:49 +00:00
cmap Q q
command W w
map <Tab> <C-w>w
map <S-Tab> <C-w>W
2013-06-01 23:09:59 +00:00
set list
2013-09-28 20:57:33 +00:00
set listchars=tab:\|\-"Cool for ifs/whiles
2013-10-14 09:22:08 +00:00
"set listchars=tab:\|\ "Cool for ifs/whiles
2013-09-04 21:27:49 +00:00
set listchars+=trail"For eol with spaces
2013-10-14 09:22:08 +00:00
"set listchars+=eol:↲ "To show eol;not very useful with trail, but cool anyway :p
2013-09-04 21:27:49 +00:00
set listchars+=nbsp:⍽ "For unbreakeable spaces
2013-06-01 23:09:59 +00:00
2013-10-19 13:53:50 +00:00
highlight NonText ctermfg=8 guifg=lightblue "EOL
highlight SpecialKey ctermfg=lightblue
2013-10-14 09:22:08 +00:00
2013-09-30 07:49:46 +00:00
2013-06-01 23:09:59 +00:00
set history=500
set undolevels=500
set title "titre du terminal
set autoindent
2013-06-28 16:05:24 +00:00
set smartindent
2013-09-28 20:57:33 +00:00
set copyindent
set preserveindent
2013-06-01 23:09:59 +00:00
2013-10-06 17:55:14 +00:00
set autoread "lit les modifs externes
2013-09-30 07:49:46 +00:00
"highlight identical words
2013-09-04 21:27:49 +00:00
autocmd CursorMoved *
\ exe printf('match IncSearch /\V\<%s\>/', escape(expand('<cword>'), '/\'))
2013-06-01 23:09:59 +00:00
2013-09-30 07:49:46 +00:00
" lines longer than 80 chars {{{
2013-09-04 21:27:49 +00:00
set cc=80
hi ColorColumn ctermbg=lightblue guibg=lightgrey
2013-09-30 07:49:46 +00:00
" }}}
2013-06-01 23:09:59 +00:00
"MAKEFILES
map <F5> :make
2013-11-25 23:41:55 +00:00
map <F6> :e %:r.h
2013-06-01 23:09:59 +00:00
"TIPS : :copen :cclose :cw
2013-06-02 19:31:03 +00:00
2013-09-30 07:49:46 +00:00
"SKELETONS {{{
2013-06-02 19:31:03 +00:00
" When editing a new file, load skeleton if any.
" If we find <+FILENAME+> in skeleton, replace it by the filename.
" If we find <+HEADERNAME+> in skeleton, replace it by the filename
" uppercase with . replaced by _ (foo.h become FOO_H).
autocmd BufNewFile *
\ let skel = $HOME . "/.vim/skeletons/skel." . expand("%:e") |
\ if filereadable(skel) |
\ execute "silent! 0read " . skel |
\ let fn = expand("%") |
\ let hn = substitute(expand("%"), "\\w", "\\u\\0", "g") |
\ let hn = substitute(hn, "\\.", "_", "g") |
\ let hn = substitute(hn, "/", "_", "g") |
\ let cn = expand("%:t:r") |
\ %s/<+FILENAME+>/\=fn/Ige |
\ %s/<+HEADERNAME+>/\=hn/Ige |
\ %s/<+CLASSNAME+>/\=cn/Ige |
\ unlet fn hn cn |
\ endif |
\ unlet skel |
\ goto 1
" skeleton template use <+KEY+>
nnoremap § <esc>/<+.\{-1,}+><return>c/+>/e<return>
inoremap § <esc>/<+.\{-1,}+><return>c/+>/e<return>
2013-09-30 07:49:46 +00:00
" }}}
2013-08-22 14:26:45 +00:00
2013-09-04 21:27:49 +00:00
"Automatic line wrap/br when writing mails in mutt
2013-09-29 15:36:18 +00:00
au BufRead /dev/shm/mutt-* set tw=80 fo+=aw noautoindent
2013-08-22 14:26:45 +00:00
2013-11-25 23:41:55 +00:00
autocmd BufRead,BufNewFile *.tex set tw=80 fo+=aw
autocmd BufRead,BufNewFile *.latex set tw=80 fo+=aw
2013-11-07 14:51:11 +00:00
autocmd BufRead,BufNewFile *.lista set filetype=lisp
2013-10-01 11:59:54 +00:00
2013-11-11 08:36:29 +00:00
autocmd BufRead,BufNewFile *.m set nospell
2013-09-30 07:49:46 +00:00
2013-09-04 21:27:49 +00:00
"Automatic documentation
2013-08-22 14:26:45 +00:00
autocmd BufNewFile,BufRead *.py set keywordprg=pydoc
autocmd BufNewFile,BufRead *.php set keywordprg=~/.vim/scripts/doc.php.sh
2013-10-23 22:01:14 +00:00
"JAVA
iabbr syso System.out.println
2013-10-27 21:07:20 +00:00
if bufwinnr(1)
map + <C-W>>
map - <C-W><
endif
2013-11-01 15:45:53 +00:00
"vimdiff
set diffopt+=iwhite