summaryrefslogtreecommitdiff
path: root/neovim/.config/nvim/lua/plugins/undotree.lua
diff options
context:
space:
mode:
authorMichaël Ball <michael.ball@krotosaudio.com>2024-07-18 09:07:05 +0100
committerMichaël Ball <michael.ball@krotosaudio.com>2024-07-18 09:07:05 +0100
commit457ce9e6017c081e02a566895fa1fe488cd87b9c (patch)
tree05f49a483fe99c9935f43e8e4c25f80ba5077452 /neovim/.config/nvim/lua/plugins/undotree.lua
parent4c2a7cc1b0fa0e437476e06c1c11e1778d9cc92f (diff)
Refactor plugins for lazy.nvim
Diffstat (limited to 'neovim/.config/nvim/lua/plugins/undotree.lua')
-rw-r--r--neovim/.config/nvim/lua/plugins/undotree.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/neovim/.config/nvim/lua/plugins/undotree.lua b/neovim/.config/nvim/lua/plugins/undotree.lua
new file mode 100644
index 0000000..7492481
--- /dev/null
+++ b/neovim/.config/nvim/lua/plugins/undotree.lua
@@ -0,0 +1,8 @@
+return {
+ {
+ 'mbbill/undotree',
+ keys = {
+ { '<F5>', '<cmd>UndotreeToggle<CR>', desc = 'UndoTree toggle' },
+ },
+ },
+}