diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua index c16f6fe..7418e79 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua @@ -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, },