chezmoi/private_dot_config/nvim/lua/settings/theme.lua

22 lines
481 B
Lua
Raw Normal View History

2025-07-16 17:22:02 +00:00
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]]