1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 20:10:05 +08:00
SpaceVim/config/plugins_before/ale.vim

19 lines
684 B
VimL
Raw Normal View History

2017-10-25 10:27:25 +08:00
scriptencoding utf-8
2017-10-25 10:40:37 +08:00
let g:ale_sign_error = get(g:, 'spacevim_error_symbol', '✖')
let g:ale_sign_warning = get(g:,'spacevim_warning_symbol', '➤')
let g:ale_sign_info = get(g:,'spacevim_info_symbol', '🛈')
let g:ale_echo_msg_format = get(g:, 'ale_echo_msg_format', '%severity%: %linter%: %s')
let g:ale_lint_on_save = get(g:, 'spacevim_lint_on_save', 1)
2017-10-25 10:40:37 +08:00
2022-04-03 22:28:30 +08:00
if get(g:, 'spacevim_colorscheme', '') ==# 'gruvbox'
2017-10-25 10:40:37 +08:00
highlight link ALEErrorSign GruvboxRedSign
highlight link ALEWarningSign GruvboxYellowSign
endif
2022-04-03 22:28:30 +08:00
if get(g:, 'spacevim_lint_on_the_fly', 0)
2017-10-25 10:40:37 +08:00
let g:ale_lint_on_text_changed = 'always'
let g:ale_lint_delay = 750
else
let g:ale_lint_on_text_changed = 'never'
endif