From 5a87c6db292ccf74c5251a2b8f6e3f864769e489 Mon Sep 17 00:00:00 2001 From: yage Date: Tue, 6 Feb 2024 13:39:09 -0700 Subject: [PATCH] update ALE settings for new error format settings --- vim/color.vim | 8 +++++++- vim/vundle.vim | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/vim/color.vim b/vim/color.vim index bd32ceb..9caf133 100644 --- a/vim/color.vim +++ b/vim/color.vim @@ -1,4 +1,4 @@ -set t_Co=256 t_8f=[38:2:%lu:%lu:%lum t_8b=[48:2:%lu:%lu:%lum t_ZH= t_ZR= +set t_Co=256 t_8f=[38:2:%lu:%lu:%lum t_8b=[48:2:%lu:%lu:%lum t_ZH= t_ZR= t_Cs=[4:3m t_Ce=[4:0m colorscheme default silent! colorscheme dim @@ -12,3 +12,9 @@ highlight SpellBad cterm=bold gui=bold ctermbg=NONE guibg=NO highlight TabLineFill cterm=bold gui=bold ctermbg=NONE guibg=NONE highlight TabLine cterm=NONE gui=NONE ctermbg=NONE guibg=NONE ctermfg=darkgray guifg=darkgray highlight TabLineSel cterm=bold gui=bold ctermbg=NONE guibg=NONE ctermfg=white guifg=white + +highlight ALEVirtualTextError cterm=nocombine,italic,undercurl gui=nocombine,italic ctermbg=NONE ctermfg=yellow guibg=NONE guifg=yellow +highlight ALEVirtualTextWarning cterm=nocombine,italic,undercurl gui=nocombine,italic ctermbg=NONE ctermfg=yellow guibg=NONE guifg=yellow +highlight ALEVirtualTextInfo cterm=nocombine,italic,undercurl gui=nocombine,italic ctermbg=NONE ctermfg=yellow guibg=NONE guifg=yellow +highlight ALEVirtualTextStyleError cterm=nocombine,italic,undercurl gui=nocombine,italic ctermbg=NONE ctermfg=yellow guibg=NONE guifg=yellow +highlight ALEVirtualTextStyleWarning cterm=nocombine,italic,undercurl gui=nocombine,italic ctermbg=NONE ctermfg=yellow guibg=NONE guifg=yellow diff --git a/vim/vundle.vim b/vim/vundle.vim index 05d7b99..001d22e 100644 --- a/vim/vundle.vim +++ b/vim/vundle.vim @@ -75,6 +75,7 @@ let g:ale_lint_on_insert_leave = 0 let g:ale_lint_on_save = 1 let g:ale_sign_column_always = 1 +nmap at (ale_toggle_buffer) nmap ae (ale_next) nmap ar (ale_previous) nmap f (ale_fix)