You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
586 B
38 lines
586 B
8 years ago
|
" set color template
|
||
|
colo desert
|
||
|
|
||
|
" enable syntax highlighting
|
||
|
syntax on
|
||
|
|
||
|
" you can show line numbers
|
||
|
set number
|
||
|
|
||
|
" surligne resultat de recherche
|
||
|
set hlsearch
|
||
|
|
||
|
" taglist
|
||
|
filetype plugin on
|
||
|
|
||
|
" font
|
||
|
set guifont=Monospace\ 9
|
||
|
|
||
|
" alias, tags enter with 't'
|
||
|
map t <C-]>
|
||
|
|
||
|
" Cursori (#F0E68C)
|
||
|
highlight Cursor guifg=black guibg=#F0E68C
|
||
|
|
||
|
" Cursor line
|
||
|
highlight CursorLine guibg=#242424 gui=none
|
||
|
"
|
||
|
augroup CursorLine
|
||
|
au!
|
||
|
au VimEnter,WinEnter,BufWinEnter * setlocal cursorline
|
||
|
au WinLeave * setlocal nocursorline
|
||
|
augroup END
|
||
|
|
||
|
" autocompletion
|
||
|
set wildmenu
|
||
|
set wildmode=longest:list,full
|
||
|
|