summaryrefslogtreecommitdiff
path: root/modules/ale.vim
blob: e7c2a14ca1058e5780b408ae6aeec38c7423a889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"Enable ale linters"
let g:ale_linters = {
    \ 'cpp' : ['gcc'],
    \ 'c' : ['gcc'],
    \ 'vim' : ['~/.miniconda/envs/neovim/bin/vint'],
    \ 'python': [],
    \ 'javascript': []
    \}
    "\ 'python': ['pyls','pydocstyle', 'pycodestyle'],

let g:ale_fixers = {
\   '*': ['remove_trailing_lines', 'trim_whitespace'],
\   'python': ['yapf'],
\}