diff options
author | ChristianChiarulli <[email protected]> | 2019-08-07 19:20:24 -0400 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2019-08-07 19:20:24 -0400 |
commit | 8b11502fd63742e0b57db15d3ab45c5f35f485e4 (patch) | |
tree | 13ad508870a9e7786c31f304d5e4556d7c250ccf /modules/ale.vim | |
parent | 1b5b78fdac6c8182f583d4875c621c6e6566182b (diff) |
updated some junk
Diffstat (limited to 'modules/ale.vim')
-rw-r--r-- | modules/ale.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/ale.vim b/modules/ale.vim index ce2680d4..e7c2a14c 100644 --- a/modules/ale.vim +++ b/modules/ale.vim @@ -2,10 +2,11 @@ let g:ale_linters = { \ 'cpp' : ['gcc'], \ 'c' : ['gcc'], - \ 'vim' : ['vint'], - \ 'python': ['pyls','pydocstyle', 'pycodestyle'], + \ 'vim' : ['~/.miniconda/envs/neovim/bin/vint'], + \ 'python': [], \ 'javascript': [] \} + "\ 'python': ['pyls','pydocstyle', 'pycodestyle'], let g:ale_fixers = { \ '*': ['remove_trailing_lines', 'trim_whitespace'], |