diff options
| -rw-r--r-- | .config/nvim/lua/plugins/theme.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/theme.lua b/.config/nvim/lua/plugins/theme.lua index 2be3d8e..f372b17 100644 --- a/.config/nvim/lua/plugins/theme.lua +++ b/.config/nvim/lua/plugins/theme.lua @@ -3,6 +3,12 @@ return { "ellisonleao/gruvbox.nvim", priority = 1000, config = function() + require("gruvbox").setup({ + transparent_mode = true, + overrides = { + CursorLineNr = {bg = ""} + } + }) vim.cmd.colorscheme "gruvbox" end } |