From 8177d63e07ce32616887b11c33015e0f6057d917 Mon Sep 17 00:00:00 2001 From: Rick Jones Date: Sat, 6 Jun 2020 16:12:36 +0100 Subject: [PATCH] Add update highlights docs Resolves: #1404 --- doc/airline.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/airline.txt b/doc/airline.txt index c63be9b9..07baa3d0 100644 --- a/doc/airline.txt +++ b/doc/airline.txt @@ -167,6 +167,14 @@ values): endif endfunction < +* if you want to update your highlights without effecting the airline theme, + you can do so using the AirlineAfterTheme autocmd. > + function! s:update_highlights() + hi CursorLine ctermbg=none guibg=none + hi VertSplit ctermbg=none guibg=none + endfunction + autocmd User AirlineAfterTheme call s:update_highlights() +< * By default, airline will use unicode symbols if your encoding matches utf-8. If you want the powerline symbols set this variable: > let g:airline_powerline_fonts = 1