aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-10-07 15:57:02 -0500
committerToby Vincent <tobyv13@gmail.com>2022-10-07 17:58:33 -0500
commita58edad2159329db0dd7f4152d5395d6ab3024f5 (patch)
treee73c278eef9f855290bb181a5d0a56703dbc163c /nvim/.config
parent0055f3a2d829c6dd135e709fc1b53c75554da7d7 (diff)
fix(nvim): add missing setup call for undotree
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