[neovim] Fix colorscheme
This commit is contained in:
parent
71550e4c96
commit
6aedca76f7
2 changed files with 12 additions and 9 deletions
|
@ -9,6 +9,9 @@ require("plugins")
|
|||
vim.cmd.source("~/.config/nvim/init.old.vim")
|
||||
|
||||
-- Colorscheme --
|
||||
if vim.fn.has("termguicolors") then
|
||||
vim.o.termguicolors = true
|
||||
end
|
||||
vim.cmd([[colorscheme base16-gruvbox-dark-pale]])
|
||||
|
||||
|
||||
|
|
|
@ -110,15 +110,15 @@ endif
|
|||
|
||||
|
||||
"[Kitty doesn't support background color erase]"
|
||||
let &t_ut=''
|
||||
let base16colorspace=256
|
||||
set background=dark
|
||||
colorscheme base16-default-dark
|
||||
"[Fix background transparency]"
|
||||
if has("autocmd")
|
||||
autocmd ColorScheme * highlight Normal ctermbg=None
|
||||
autocmd ColorScheme * highlight NonText ctermbg=None
|
||||
endif
|
||||
"let &t_ut=''
|
||||
"let base16colorspace=256
|
||||
"set background=dark
|
||||
"colorscheme base16-default-dark
|
||||
""[Fix background transparency]"
|
||||
"if has("autocmd")
|
||||
" autocmd ColorScheme * highlight Normal ctermbg=None
|
||||
" autocmd ColorScheme * highlight NonText ctermbg=None
|
||||
"endif
|
||||
|
||||
|
||||
"[Define the leader key]"
|
||||
|
|
Loading…
Reference in a new issue