parent
7e22299930
commit
2f241070cf
9
init.vim
9
init.vim
|
@ -1,6 +1,6 @@
|
||||||
" Syntax coloration and color theme
|
" Syntax coloration and color theme
|
||||||
syntax enable
|
syntax enable
|
||||||
set background=light
|
set background=dark
|
||||||
colorscheme solarized
|
colorscheme solarized
|
||||||
|
|
||||||
" Filetype detection
|
" Filetype detection
|
||||||
|
@ -58,8 +58,14 @@ autocmd BufNewFile,BufRead *.jsonld setfiletype json
|
||||||
autocmd FileType json setlocal foldmethod=syntax
|
autocmd FileType json setlocal foldmethod=syntax
|
||||||
" Détermine le niveau de fold par défaut pour le JSON
|
" Détermine le niveau de fold par défaut pour le JSON
|
||||||
autocmd FileType json set foldlevel=2
|
autocmd FileType json set foldlevel=2
|
||||||
|
autocmd FileType json set tabstop=2
|
||||||
|
autocmd FileType json set softtabstop=2
|
||||||
" Détermine le niveau de fold par défaut pour le md
|
" Détermine le niveau de fold par défaut pour le md
|
||||||
autocmd FileType markdown set foldlevel=0
|
autocmd FileType markdown set foldlevel=0
|
||||||
|
" Détermine l'indentation par défaut pour le html
|
||||||
|
autocmd FileType html set tabstop=2
|
||||||
|
autocmd FileType html set softtabstop=2
|
||||||
|
autocmd FileType html set shiftwidth=2
|
||||||
|
|
||||||
let g:xml_syntax_folding=3
|
let g:xml_syntax_folding=3
|
||||||
au FileType xml setlocal foldmethod=syntax
|
au FileType xml setlocal foldmethod=syntax
|
||||||
|
@ -122,4 +128,5 @@ Plug 'davidhalter/jedi-vim' " warning, may conflicts with python-mode
|
||||||
Plug 'nvie/vim-flake8'
|
Plug 'nvie/vim-flake8'
|
||||||
Plug 'kien/ctrlp.vim'
|
Plug 'kien/ctrlp.vim'
|
||||||
Plug 'scrooloose/nerdtree'
|
Plug 'scrooloose/nerdtree'
|
||||||
|
Plug 'Floobits/floobits-neovim'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
Loading…
Reference in New Issue