summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/.config')
-rw-r--r--nvim/.config/nvim/lua/tobyvin/plugins/undotree.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/plugins/undotree.lua b/nvim/.config/nvim/lua/tobyvin/plugins/undotree.lua
index f43425e..116f7d5 100644
--- a/nvim/.config/nvim/lua/tobyvin/plugins/undotree.lua
+++ b/nvim/.config/nvim/lua/tobyvin/plugins/undotree.lua
@@ -7,7 +7,13 @@ M.setup = function()
return
end
- vim.keymap.set("n", "<leader>u", undotree.toggle, { desc = "Toggle undotree" })
+ undotree.setup({
+ window = {
+ winblend = 0,
+ },
+ })
+
+ vim.keymap.set("n", "<leader>u", undotree.toggle, { desc = "Undotree" })
end
return M