This commit is contained in:
Bryan Ramos 2023-06-19 10:08:29 -04:00
parent 081c2ff814
commit a9d751311f

View file

@ -8,8 +8,27 @@ return {
options = {
transparent = true,
},
styles = { -- Style to be applied to different syntax groups
comments = "NONE", -- Value is any valid attr-list value `:help attr-list`
functions = "italic",
keywords = "bold",
variables = "NONE",
conditionals = "NONE",
constants = "NONE",
numbers = "NONE",
operators = "NONE",
strings = "NONE",
types = "NONE",
},
darken = { -- Darken floating windows and sidebar-like windows
floats = true,
sidebars = {
enable = true,
list = {}, -- Apply dark background to specific windows
},
},
})
vim.cmd("colorscheme github_dark_high_contrast")
vim.cmd("colorscheme github_dark")
end,
},