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/telescope.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/telescope.lua')
-rw-r--r-- | nvim/lua/plugins/telescope.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nvim/lua/plugins/telescope.lua b/nvim/lua/plugins/telescope.lua index bd26f0f..c2c4102 100644 --- a/nvim/lua/plugins/telescope.lua +++ b/nvim/lua/plugins/telescope.lua @@ -2,6 +2,7 @@ return { { 'nvim-telescope/telescope.nvim', tag = '0.1.8', dependencies = { 'nvim-lua/plenary.nvim' }, + lazy = false, config = function() local builtin = require('telescope.builtin') |