LunarVim/modules/ale.vim
Christian Chiarulli f833d75d73 fixed ALE
2019-02-12 19:35:56 -05:00

10 lines
204 B
VimL

"Enable ale linters"
let g:ale_linters = {
\ 'cpp' : ['gcc'],
\ 'c' : ['gcc'],
\ 'vim' : ['vint'],
\ 'python': ['flake8', 'pyls'],
\ 'javascript': ['eslint']
\}
"TODO add fixers"