dotfiles/vim/ftplugin/scss.vim
Alicia Sykes afb55def37 V0.01
2021-01-31 20:45:12 +00:00

14 lines
267 B
VimL

if exists('b:did_ftplugin')
finish
endif
let b:did_ftplugin = 1
setlocal autoindent
setlocal expandtab
setlocal tabstop=2
setlocal shiftwidth=2
setlocal softtabstop=2
" ale fixer settings
let b:ale_fixers = ['trim_whitespace', 'remove_trailing_lines', 'prettier']