clean
This commit is contained in:
parent
2a895aa930
commit
c3ddf46468
|
@ -32,25 +32,12 @@ syntax on
|
||||||
" colorscheme default
|
" colorscheme default
|
||||||
colorscheme elflord
|
colorscheme elflord
|
||||||
|
|
||||||
" search
|
|
||||||
" set incsearch
|
|
||||||
" set hlsearch
|
|
||||||
|
|
||||||
" print code with :hardcopy using impression.lam.jussieu.fr
|
" print code with :hardcopy using impression.lam.jussieu.fr
|
||||||
set printdevice=hp5550-509
|
set printdevice=hp5550-509
|
||||||
set printoptions=left:5pt,right:5pt,top:5pt,bottom:5pt,number:y,duplex:off,wrap:y,paper:A4,portrait:y
|
set printoptions=left:5pt,right:5pt,top:5pt,bottom:5pt,number:y,duplex:off,wrap:y,paper:A4,portrait:y
|
||||||
set printheader=%<%F\ -\ page\ %N%=Print\ at\ %{strftime(\'%Y-%m-%d\ %H:%M\')}
|
set printheader=%<%F\ -\ page\ %N%=Print\ at\ %{strftime(\'%Y-%m-%d\ %H:%M\')}
|
||||||
" FIXME set printfont=:h18
|
" FIXME set printfont=:h18
|
||||||
|
|
||||||
""""""""""""""""""""
|
|
||||||
" message
|
|
||||||
" function! s:DisplayStatus(msg)
|
|
||||||
" echohl Todo
|
|
||||||
" echo a:msg
|
|
||||||
" echohl None
|
|
||||||
" endfunction
|
|
||||||
|
|
||||||
|
|
||||||
"""""""""""""""""""
|
"""""""""""""""""""
|
||||||
" ligne de statut
|
" ligne de statut
|
||||||
set statusline=%F%m%r%h%w\ %{fugitive#statusline()}%=[BUF=%n][FORMAT=%{&ff}][TYPE=%Y][ASCII=%03.3b][LINE=%03l][COL=%03v][%p%%]
|
set statusline=%F%m%r%h%w\ %{fugitive#statusline()}%=[BUF=%n][FORMAT=%{&ff}][TYPE=%Y][ASCII=%03.3b][LINE=%03l][COL=%03v][%p%%]
|
||||||
|
@ -74,7 +61,7 @@ highlight CursorLine term=underline cterm=underline
|
||||||
set hlsearch
|
set hlsearch
|
||||||
highlight Search term=reverse,bold cterm=reverse,bold ctermfg=None ctermbg=None
|
highlight Search term=reverse,bold cterm=reverse,bold ctermfg=None ctermbg=None
|
||||||
set incsearch
|
set incsearch
|
||||||
highlight IncSearch term=reverse,bold cterm=reverse,bold ctermfg=None ctermbg=None
|
highlight IncSearch term=reverse cterm=reverse ctermfg=None ctermbg=None
|
||||||
|
|
||||||
"""""""""""""""""""
|
"""""""""""""""""""
|
||||||
" autoindent
|
" autoindent
|
||||||
|
@ -234,7 +221,14 @@ augroup END
|
||||||
" let g:syntastic_auto_loc_list = 1
|
" let g:syntastic_auto_loc_list = 1
|
||||||
" let g:syntastic_check_on_open = 1
|
" let g:syntastic_check_on_open = 1
|
||||||
" let g:syntastic_check_on_wq = 0
|
" let g:syntastic_check_on_wq = 0
|
||||||
let g:syntastic_auto_jump = 2
|
" let g:syntastic_auto_jump = 2
|
||||||
|
|
||||||
|
" Search down into subfolders
|
||||||
|
" Provides tab-completion for all file-related tasks
|
||||||
|
" use :find + <tab>
|
||||||
|
set path+=**
|
||||||
|
" Display all matching files when we tab complete
|
||||||
|
set wildmenu
|
||||||
|
|
||||||
""" keymaps
|
""" keymaps
|
||||||
" no arrows keys no more
|
" no arrows keys no more
|
||||||
|
|
Loading…
Reference in New Issue