22 lines
481 B
Lua
22 lines
481 B
Lua
|
|
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]]
|