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
-3
View File
@@ -1,3 +0,0 @@
{
"lastCheck": 1644081143089
}
+2 -3
View File
@@ -3,9 +3,8 @@
name: kitping
root: ~/src/kitping
startup_window: editor
pre_window: export KITPING_ENV=development; nvm use
startup_window: terminal
windows:
- server: npm run dev
- editor: vim
- terminal:
+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']
\}