mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nvim] fix base16-shell loading
This commit is contained in:
parent
83106d42fb
commit
d0c5031842
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ let s:base16_theme_name = 'eighties'
|
||||||
|
|
||||||
let g:base16_shell_path = get(g:, 'base16_shell_path', expand('~/.zgen/chriskempson/base16-shell-master'))
|
let g:base16_shell_path = get(g:, 'base16_shell_path', expand('~/.zgen/chriskempson/base16-shell-master'))
|
||||||
let s:base16_shell_script = g:base16_shell_path . '/scripts/base16-' . s:base16_theme_name . '.sh'
|
let s:base16_shell_script = g:base16_shell_path . '/scripts/base16-' . s:base16_theme_name . '.sh'
|
||||||
if filereadable(s:base16_shell_script)
|
if filereadable(s:base16_shell_script) && !&termguicolors
|
||||||
" call system(shellescape(s:base16_shell_script))
|
" call system(shellescape(s:base16_shell_script))
|
||||||
else
|
else
|
||||||
set termguicolors
|
set termguicolors
|
||||||
|
|
Loading…
Reference in a new issue