From d3aaadc9bdf626dd9077d838d2abe488065f1a50 Mon Sep 17 00:00:00 2001 From: Volodymyr Patuta Date: Thu, 23 May 2024 12:58:24 +0200 Subject: [PATCH] update --- lua/plugins/editor.lua | 1 + lua/plugins/treesitter.lua | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index a528880..cf28c99 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -79,6 +79,7 @@ return { { 'fb', telescope 'buffers', desc = 'buffers' }, { 'fc', telescope 'colorscheme', desc = 'colorscheme' }, { 'fh', telescope 'oldfiles', desc = 'history' }, + { 'fj', telescope 'jumplist', desc = 'history' }, } end, config = function() diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 49a7e19..5d6a411 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -32,10 +32,10 @@ return { incremental_selection = { enable = true, keymaps = { - init_selection = 's', + init_selection = 'v', node_incremental = '', scope_incremental = false, - node_decremental = '', + node_decremental = '', }, }, -- Or use a function for more flexibility, e.g. to disable slow treesitter highlight for large files