mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
chore(base16): add Base16 color theme plugins for shell and vim
This commit is contained in:
14
nvim/plugins/base16-vim.vim
Normal file
14
nvim/plugins/base16-vim.vim
Normal 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
|
||||
Reference in New Issue
Block a user