aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim
diff options
context:
space:
mode:
authorawy <awy@awy.one>2025-11-20 01:50:03 +0300
committerawy <awy@awy.one>2025-11-20 01:50:03 +0300
commit9cafbfd41538b467213bf0dc0a5a0c9405ac9e1d (patch)
tree723ddb9c491bb380e8818493c1467c32fac531b5 /.config/nvim
parent8b9b0f001f2835c1c3651399b7c8aceb5e21bd8b (diff)
downloadhyprdots-9cafbfd41538b467213bf0dc0a5a0c9405ac9e1d.tar.gz
te
Diffstat (limited to '.config/nvim')
-rw-r--r--.config/nvim/lua/plugins/theme.lua6
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
}