Add coffeescript support
This commit is contained in:
parent
3112898688
commit
0668d795f3
2 changed files with 7 additions and 1 deletions
|
@ -33,7 +33,6 @@ set shortmess+=filmnrxoOtT " retire le hit <Enter>
|
|||
|
||||
set background=dark " fond noir par défaut
|
||||
set ai " indentation automatique
|
||||
syntax enable " activation de la coloration syntaxique
|
||||
set t_Co=256 " pour un terminal en 256 couleurs, attention, sélection transparente avec un fond transparent !
|
||||
set autowrite " Sauvegarde automatiquement
|
||||
set expandtab " Utilise des espaces plutôt que le caractère tabulation
|
||||
|
@ -231,3 +230,6 @@ endif
|
|||
let g:jedi#completions_command = "<C-f>"
|
||||
autocmd! WinEnter * :if !exists('w:parens_match_id') | let w:parens_match_id=matchadd('operator', '[(){}\[\]\-\+=\\/\*\^,\.:<>]') | endif
|
||||
|
||||
filetype off
|
||||
filetype on
|
||||
syntax enable " activation de la coloration syntaxique
|
||||
|
|
|
@ -130,3 +130,7 @@ git clone https://github.com/hdima/python-syntax.git ~/.vim/bundle/python-syntax
|
|||
# Install better support of colorscheme
|
||||
rm -rf ~/.vim/bundle/csapprox
|
||||
git clone https://github.com/godlygeek/csapprox.git ~/.vim/bundle/csapprox
|
||||
|
||||
# Install support of coffeescript
|
||||
rm -rf ~/.vim/bundle/coffeescript
|
||||
git clone https://github.com/kchmck/vim-coffee-script.git ~/.vim/bundle/coffeescript
|
||||
|
|
Loading…
Reference in a new issue