fix(treesitter): non-clashing keybind for text selection

This commit is contained in:
Oliver Ladner 2025-05-12 10:36:19 +02:00
commit 507941c68f

View file

@ -17,7 +17,7 @@ return {
-- language list: https://github.com/nvim-treesitter/nvim-treesitter#supported-languages
ensure_installed = {
"lua",
"comment", -- used for TODO/FIXME/NOTE etc
"comment", -- used for TODO:, FIXME:, XXX: and NOTE:
"vim",
"vimdoc",
"bash",
@ -61,8 +61,8 @@ return {
incremental_selection = {
enable = true,
keymaps = {
init_selection = "<C-space>",
node_incremental = "<C-space>",
init_selection = "<C-s>",
node_incremental = "<C-s>",
scope_incremental = false,
node_decremental = "<bs>",
},