mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
19 lines
392 B
Lua
19 lines
392 B
Lua
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
textobjects = {
|
|
lsp_interop = {
|
|
enable = true,
|
|
floating_preview_opts = {
|
|
border = 'rounded',
|
|
},
|
|
peek_definition_code = {
|
|
["<leader>fd"] = "@function.outer",
|
|
["<leader>fD"] = "@class.outer",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|