From 9feca1c7afcd1150558f9252dcde1e1722fcae27 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 20 Feb 2023 17:04:32 +0000 Subject: [PATCH] fix(vim-ale): update config for v3.2.0 + unicode fix --- vim-ale/ale.vim | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/vim-ale/ale.vim b/vim-ale/ale.vim index 23c2f9d..a21b1fa 100644 --- a/vim-ale/ale.vim +++ b/vim-ale/ale.vim @@ -6,10 +6,14 @@ let g:ale_lint_on_enter = 0 " check on save let g:ale_lint_on_save = 1 -" these emojis go in the sidebar for errors and warnings -" other considerations: '💥' '☠' '●' '.' -let g:ale_sign_error = '☢️' -let g:ale_sign_warning = '⚡' +" don't spam the virtual text ('disable' to disable) +let g:ale_virtualtext_cursor = 'current' + +" These emojis go in the sidebar for errors and warnings +" other considerations: '💥' '☢️' '⚡' '☠' '●' '.' +" Note: one- and two-byte characters are more compatible +let g:ale_sign_error = '✘' +let g:ale_sign_warning = '⚠️' " show error count function! LinterStatus() abort