aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/undotree.lua
diff options
context:
space:
mode:
authorben <ben@nagy.contact>2025-01-10 10:41:02 -0800
committerben <ben@nagy.contact>2025-01-10 10:41:02 -0800
commitd1fd442c43d5313b916ca159fcf8fdc3cc871785 (patch)
tree774b135b8b44afb3b6f9679fed00a8ef63731c48 /nvim/lua/plugins/undotree.lua
parentb33651ac7bd821efd4c5ec67f22cc53780da32a3 (diff)
fixed neovim cursor disappearance during sustained motions
- synchronous git calls -> async. in statusline - cached git branch in statusline
Diffstat (limited to 'nvim/lua/plugins/undotree.lua')
-rw-r--r--nvim/lua/plugins/undotree.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/nvim/lua/plugins/undotree.lua b/nvim/lua/plugins/undotree.lua
index e874811..16d437e 100644
--- a/nvim/lua/plugins/undotree.lua
+++ b/nvim/lua/plugins/undotree.lua
@@ -1,6 +1,7 @@
return {
{
"mbbill/undotree",
+ lazy = false,
config = function()
vim.keymap.set('n', '<leader>u', vim.cmd.UndotreeToggle)