[nvim] Add opts to treesitter

This commit is contained in:
aloslider
2026-06-29 19:43:04 +03:00
parent ed067e6b70
commit 8435a5b686
@@ -28,6 +28,19 @@ return {
init = function() init = function()
vim.g.no_plugin_maps = true vim.g.no_plugin_maps = true
end, end,
opts = {} opts = {
-- select = {
-- enable = true,
-- lookahead = true,
-- keymaps = {
-- ["aa"] = "@parameter.outer",
-- ["ia"] = "@parameter.inner",
-- ["af"] = "@function.outer",
-- ["if"] = "@function.inner",
-- ["ac"] = "@class.outer",
-- ["ic"] = "@class.inner",
-- }
-- },
}
} }
} }