mirror of
https://github.com/Lissy93/dotfiles.git
synced 2024-11-26 01:03:25 +01:00
14 lines
267 B
VimL
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']
|