diff options
author | ben <ben@nagy.contact> | 2025-01-10 10:41:02 -0800 |
---|---|---|
committer | ben <ben@nagy.contact> | 2025-01-10 10:41:02 -0800 |
commit | d1fd442c43d5313b916ca159fcf8fdc3cc871785 (patch) | |
tree | 774b135b8b44afb3b6f9679fed00a8ef63731c48 /nvim/lua/plugins/undotree.lua | |
parent | b33651ac7bd821efd4c5ec67f22cc53780da32a3 (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.lua | 1 |
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) |