chezmoi/private_dot_config/nvim/lua/plugins/theming.lua

30 lines
702 B
Lua

return {
{
'projekt0n/github-nvim-theme',
config = function()
require('github-theme').setup({
options = {
styles = {
functions = "NONE"
},
darken = { -- Darken floating windows and sidebar-like windows
floats = false,
sidebars = {
enable = true,
list = {"qf", "vista_kind", "terminal", "packer"}, -- Apply dark background to specific windows
},
},
},
palettes = {
all = {
hint = "orange",
error = "#ff0000"
},
},
})
vim.cmd[[colorscheme github_dark_high_contrast]]
end,
},
}