aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/auto-pairs.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/auto-pairs.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/auto-pairs.lua')
-rw-r--r--nvim/lua/plugins/auto-pairs.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/nvim/lua/plugins/auto-pairs.lua b/nvim/lua/plugins/auto-pairs.lua
index 7fdb560..1b9b728 100644
--- a/nvim/lua/plugins/auto-pairs.lua
+++ b/nvim/lua/plugins/auto-pairs.lua
@@ -2,6 +2,7 @@ return {
{
'windwp/nvim-autopairs',
event = "InsertEnter",
- config = true
+ config = true,
+ lazy = false,
},
}