1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 02:30:05 +08:00
SpaceVim/config/plugins_before/ale.vim
Seong Yong-ju e80bed3e42 Add a new variable
Add a new variable
* Add a new variable `g:spacevim_info_symbol`
* Update configurations of some plugins to read `g:spacevim_info_symbol`
2017-11-19 11:32:59 +09:00

18 lines
597 B
VimL

scriptencoding utf-8
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')
if g:spacevim_colorscheme == 'gruvbox'
highlight link ALEErrorSign GruvboxRedSign
highlight link ALEWarningSign GruvboxYellowSign
endif
if g:spacevim_lint_on_the_fly
let g:ale_lint_on_text_changed = 'always'
let g:ale_lint_delay = 750
else
let g:ale_lint_on_text_changed = 'never'
endif