scss and toml support

This commit is contained in:
James Dixon 2020-11-29 03:45:51 -05:00
parent da5ffe4a98
commit 4752920bcf
2 changed files with 4 additions and 5 deletions

View File

@ -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
"}}}

View File

@ -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'