LunarVim/modules/ale.vim

11 lines
204 B
VimL
Raw Normal View History

2019-02-13 01:35:56 +01:00
"Enable ale linters"
let g:ale_linters = {
\ 'cpp' : ['gcc'],
\ 'c' : ['gcc'],
\ 'vim' : ['vint'],
\ 'python': ['flake8', 'pyls'],
\ 'javascript': ['eslint']
\}
"TODO add fixers"