chore(base16): add Base16 color theme plugins for shell and vim

This commit is contained in:
Stefan Imhoff
2021-12-02 19:50:34 +01:00
parent 59f3e252dd
commit b0129c251c
6 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
" Base16 for Vim
Plug 'chriskempson/base16-vim'
function ActivateColorscheme()
if filereadable(expand("~/.vimrc_background"))
let base16colorspace=256
source ~/.vimrc_background
endif
endfunction
augroup ActivateColorscheme
autocmd!
autocmd User PlugLoaded call ActivateColorscheme()
augroup END