mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
39 lines
1.1 KiB
Lua
39 lines
1.1 KiB
Lua
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
|
|
build = ":TSUpdate",
|
|
|
|
event = { "BufReadPost", "BufNewFile" },
|
|
|
|
dependencies = {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter-textobjects",
|
|
init = function()
|
|
-- PERF: no need to load the plugin, if we only need its queries for mini.ai
|
|
local plugin =
|
|
require("lazy.core.config").spec.plugins["nvim-treesitter"]
|
|
local opts = require("lazy.core.plugin").values(plugin, "opts", false)
|
|
local enabled = false
|
|
if opts.textobjects then
|
|
for _, mod in ipairs({ "move", "select", "swap", "lsp_interop" }) do
|
|
if opts.textobjects[mod] and opts.textobjects[mod].enable then
|
|
enabled = true
|
|
break
|
|
end
|
|
end
|
|
end
|
|
if not enabled then
|
|
require("lazy.core.loader").disable_rtp_plugin(
|
|
"nvim-treesitter-textobjects"
|
|
)
|
|
end
|
|
end,
|
|
},
|
|
},
|
|
|
|
---@type TSConfig
|
|
opts = require("config.plugins.tree-sitter"),
|
|
},
|
|
}
|