diff --git a/files/vim/.vim/autocmds.vim b/files/vim/.vim/autocmds.vim index a2b85b5..a649cab 100644 --- a/files/vim/.vim/autocmds.vim +++ b/files/vim/.vim/autocmds.vim @@ -1,5 +1,3 @@ -"autocmds -"--------{{{ if has("autocmd") "global augroup global @@ -16,9 +14,9 @@ if has("autocmd") autocmd FileType html,css EmmetInstall augroup END - augroup half_tab_group + augroup indent_group autocmd! - autocmd FileType html,css,javascript,json,toml,yaml + autocmd FileType html,css,scss,javascript,json,toml,yaml \ setlocal ts=2 sts=2 sw=2 expandtab augroup END @@ -37,4 +35,3 @@ if has("autocmd") augroup END endif -"}}} diff --git a/files/vim/.vim/plugins.vim b/files/vim/.vim/plugins.vim index 1423f3c..c3e4e01 100644 --- a/files/vim/.vim/plugins.vim +++ b/files/vim/.vim/plugins.vim @@ -42,6 +42,8 @@ call plug#begin(pluginDir) "markdown Plug 'plasticboy/vim-markdown' Plug 'godlygeek/tabular' + "toml + Plug 'cespare/vim-toml' "linting and lsp Plug 'w0rp/ale'