dotfiles/symlinks/config/nvim/plugin/ale.vim

27 lines
900 B
VimL
Raw Normal View History

2021-02-23 11:27:32 +00:00
" -----------------------------------------------------------------------------
" - ALE Plugin configuration -
" -----------------------------------------------------------------------------
" ALE Options
let g:ale_disable_lsp = 1 " Disable LSP, we have other stuff for that
let g:ale_fix_on_save = 1 " Default
" ALE Linters configuration
2021-03-26 20:51:15 +00:00
let g:ale_linters = {}
let g:ale_linters.python = ['flake8']
let g:ale_linters.kotlin = ['ktlint']
2021-04-08 06:37:51 +00:00
let g:ale_linters.clojure = []
2021-02-23 11:27:32 +00:00
" ALE Fixers configuration
let g:ale_fixers = {}
let g:ale_fixers['*'] = ['remove_trailing_lines', 'trim_whitespace']
let g:ale_fixers.python = ['autopep8', 'isort']
2021-03-26 20:51:15 +00:00
let g:ale_fixers.dart = ['dartfmt']
let g:ale_fixers.lua = ['luafmt']
2021-02-23 11:27:32 +00:00
" Warnings navigation
nmap <silent> [W <Plug>(ale_first)
nmap <silent> [w <Plug>(ale_previous)
nmap <silent> ]w <Plug>(ale_next)
nmap <silent> ]W <Plug>(ale_last)