From 4752920bcfc56d0d03d9b246f97200546d8555d2 Mon Sep 17 00:00:00 2001 From: James Dixon Date: Sun, 29 Nov 2020 03:45:51 -0500 Subject: [PATCH] scss and toml support --- files/vim/.vim/autocmds.vim | 7 ++----- files/vim/.vim/plugins.vim | 2 ++ 2 files changed, 4 insertions(+), 5 deletions(-) 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'