nvim: switch undotree for telescope-undo-nvim

Undotree did not have live updates like I wanted, so I have switched to
the telescope one which does.
This commit is contained in:
stitchy 2024-12-08 09:51:19 +00:00
parent a1c38f605d
commit 2d5b5cb37d
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ map("n", "<leader>>", "<cmd>BufferLineMoveNext<CR>", { desc = "Move buffer right
map("n", "<leader>a", "<cmd>ToggleTerm name=main<CR>", { desc = "Floating Terminal", silent = true })
-- Undotree
map('n', '<leader>fu', vim.cmd.UndotreeToggle)
map("n", "<leader>fu", "<cmd>Telescope undo<cr>")
----
-- Cool Macros
----