nixpkgs/home/programs/neovim/plugins/ale.vim
Daniel Siepmann 83b7870e19
Improve ale config
Use new diagnostic feature.
Do not configure phpstan path, this is already properly configured
upstream.
2023-06-19 10:53:29 +02:00

32 lines
874 B
VimL

let g:ale_set_quickfix = 0
let g:ale_set_loclist = 1
let g:ale_set_highlights = 1
let g:ale_set_signs = 1
let g:ale_sign_column_always = 1
let g:ale_echo_cursor = 0
let g:ale_hover_cursor = 0
let g:ale_cursor_detail = 0
let g:ale_virtualtext_cursor = 1
let g:ale_virtualtext_prefix = "! "
" Do not lint when open a file
let g:ale_lint_on_enter = 0
" Do not lint when changing file type
let g:ale_lint_on_filetype_changed = 0
" Do not interrupt writing to much, wait longer for start linting.
let g:ale_lint_delay = 1000
" Turn auto linting while writing off
let g:ale_lint_on_text_changed = 'never'
" Configure signs to use
let g:ale_sign_error = '>'
let g:ale_sign_warning = '!'
let g:ale_php_phpcs_standard = 'PSR12'
let g:ale_use_neovim_diagnostics_api = 1
call ale#handlers#languagetool#DefineLinter('rst')
call ale#handlers#languagetool#DefineLinter('gitcommit')