summaryrefslogtreecommitdiff
path: root/modules/ale.vim
blob: b80974024038822031bb60e8fe5a597f1eacfd02 (plain)
1
2
3
4
5
6
7
8
9
10
"Enable ale linters"
let g:ale_linters = {
    \ 'cpp' : ['gcc'],
    \ 'c' : ['gcc'],
    \ 'vim' : ['vint'],
    \ 'python': ['flake8', 'pyls'],
    \ 'javascript': ['eslint']
    \}

"TODO add fixers"