19 lines
486 B
Lua
19 lines
486 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter-context",
|
|
"RRethy/nvim-treesitter-textsubjects",
|
|
config = function()
|
|
require("treesitter-context").setup()
|
|
require("nvim-treesitter.configs").setup({
|
|
textsubjects = {
|
|
enable = true,
|
|
prev_selection = ",", -- (Optional) keymap to select the previous selection
|
|
keymaps = {
|
|
["."] = "textsubjects-smart",
|
|
[";"] = "textsubjects-container-outer",
|
|
["i;"] = "textsubjects-container-inner",
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|