Add stylelint to vim linters; update general kitping mux config

This commit is contained in:
Andrew Miner
2022-04-07 12:12:16 -06:00
parent 2211e1c865
commit e385a5a28b
4 changed files with 7 additions and 8 deletions
+4 -1
View File
@@ -131,8 +131,10 @@ let g:vue_pre_processors = 'detect_on_enter'
" scrooloose/nerdtree
let g:NERDTreeIgnore = ['__pycache__', '\.pyc$', 'node_modules']
" w0rp/ale
" vim-airline/vim-airline
let g:airline#extensions#ale#enabled = 1
" w0rp/ale
let g:ale_completion_delay = 500
let g:ale_completion_enabled = 1
let g:ale_fix_on_save = 1
@@ -146,6 +148,7 @@ let g:ale_fixers = {
\'go': ['gofmt', 'goimports'],
\'javascript': ['eslint'],
\'python': [],
\'scss': ['stylelint'],
\'typescript': ['eslint'],
\'typescriptreact': ['eslint']
\}