diff options
| author | awy <awy@awy.one> | 2025-11-20 01:50:03 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-20 01:50:03 +0300 |
| commit | 9cafbfd41538b467213bf0dc0a5a0c9405ac9e1d (patch) | |
| tree | 723ddb9c491bb380e8818493c1467c32fac531b5 /.config/nvim/lua/plugins/theme.lua | |
| parent | 8b9b0f001f2835c1c3651399b7c8aceb5e21bd8b (diff) | |
| download | hyprdots-9cafbfd41538b467213bf0dc0a5a0c9405ac9e1d.tar.gz | |
te
Diffstat (limited to '.config/nvim/lua/plugins/theme.lua')
| -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 } |