Je ne sais pas exactement comment est nommé tous les ctrl+alt+F1
, ctrl+alt+F2
, ctrl+alt+F3
etc ... terminaux mais quand je vais l' utiliser tout mon système de Vim est ignoré ...
Je l'ai fait en suivant ce site:
http://codissimo.wordpress.com/2011/01/11/enhancing-vim-as-an-htmljscssphp-editor/
Heres tout ~/.vimrc
if $COLORTERM == 'gnome-terminal'
set term=gnome-256color
set t_Co=256
colorscheme railscasts
else
colorscheme default
endif
"FileType support
set filetype=on
filetype plugin on
filetype indent on
"Color scheme and font
autocmd FileType javascript,html,css,php colorscheme railscasts
autocmd FileType javascript,html,css,php set gfn=Monaco\ 10
"Indentation
autocmd FileType javascript,html,css,php set ai
autocmd FileType javascript,html,css,php set sw=4
autocmd FileType javascript,html,css,php set ts=4
autocmd FileType javascript,html,css,php set sts=4
autocmd FileType javascript,css,php set textwidth=79
"Enable autocompletion
autocmd FileType javascript set omnifunc=javascriptcomplete#CompleteJS
autocmd FileType html set omnifunc=htmlcomplete#CompleteTags
autocmd FileType css set omnifunc=csscomplete#CompleteCSS
"Enable line numbers
autocmd FileType javascript,css,php set number
"Enable incremental search
autocmd FileType javascript,html,css,php set incsearch
Cette partie aurait dû être corrigée non?
if $COLORTERM == 'gnome-terminal'
set term=gnome-256color
set t_Co=256
colorscheme railscasts
else
colorscheme default
endif