diff --git a/neovim/.config/nvim/init.vim b/neovim/.config/nvim/init.vim index 80db1ec..7c1d920 100644 --- a/neovim/.config/nvim/init.vim +++ b/neovim/.config/nvim/init.vim @@ -1,5 +1,5 @@ " Created: Sat 09 Jan 2021 11:11:19 AM CET -" Modified: Sat 09 Jan 2021 12:21:33 PM CET +" Modified: Wed 13 Jan 2021 04:51:40 PM CET " """"""""""""" " Plugins (vim-plug) @@ -58,10 +58,10 @@ let g:jedi#use_splits_not_buffers="right" " op " sets """"""""""""" set smartindent -set tabstop=4 +set tabstop=2 set expandtab -set softtabstop=4 -set shiftwidth=4 +set softtabstop=2 +set shiftwidth=2 set showcmd " Show (partial) command in status line set showmode " Show indication of having changed modes set showmatch " Show matching brackets @@ -91,8 +91,8 @@ set spelllang=fr,en " by de let g:grammalecte_cli_py='/usr/bin/grammalecte-cli' " Path for grammalecte-cli to get grammar check in French """ Folding -set foldmethod=syntax -set foldlevel=1 +set foldmethod=syntax +set foldlevel=5 " Default fold type for HTML autocmd FileType html set tabstop=2 autocmd FileType html set softtabstop=2 @@ -103,18 +103,9 @@ au FileType xml setlocal foldmethod=syntax autocmd FileType xml set foldlevel=1 - - - - - - - """"""""""""" " Filetypes """"""""""""" - - " Filetype detection filetype plugin on