dotfiles/vim/.vim/plugin/fix_highlights.vim

6 lines
193 B
VimL
Raw Permalink Normal View History

2023-12-23 20:13:47 -07:00
" Fix highlights when switching color schemes
function! FixHighlights()
hi! link IPythonCell Todo
call Base16hi("Comment", g:base16_gui09, "", g:base16_cterm09, "", "", "")
endfunction