Update nvim theme to include opacity

This commit is contained in:
Daniel McKnight 2025-05-20 18:48:55 -07:00
parent 1af6187374
commit ee7576abe3

View file

@ -4,7 +4,11 @@ return {
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require('github-theme').setup({})
require('github-theme').setup({
options = {
transparent = true
}
})
vim.cmd('colorscheme github_dark_default')
end,
}