nvim/lua/plugins/treesitter.lua

61 lines
1.7 KiB
Lua
Raw Normal View History

local dependencies
if vim.g.vscode then
dependencies = { "nvim-treesitter/nvim-treesitter-refactor" }
else
dependencies = { "nvim-treesitter/nvim-treesitter-refactor", "nvim-neorg/neorg" }
end
return {
"nvim-treesitter/nvim-treesitter",
version = false,
build = ":TSUpdate",
event = { "BufReadPre", "BufNewFile" },
dependencies = dependencies,
2023-05-16 09:22:33 +01:00
config = function(_, opts)
if type(opts.ensure_installed) == "table" then
-- @type table<string, boolean>
local added = {}
opts.ensure_installed = vim.tbl_filter(function(lang)
if added[lang] then return false end
added[lang] = true
return true
end, opts.ensure_installed)
end
require("nvim-treesitter.configs").setup(opts)
end,
opts = {
auto_install = true,
2023-05-16 09:22:33 +01:00
highlight = {
enable = true,
disable = { "fortran" },
2023-05-16 09:22:33 +01:00
additional_vim_regex_highlighting = false,
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "gnn",
node_incremental = "gnr",
scope_incremental = "gnc",
node_decremental = "gnm",
},
},
indent = {
enable = true,
},
refactor = {
smart_rename = {
enable = true,
keymaps = {
smart_rename = "grr",
},
},
navigation = {
enable = true,
keymaps = {
goto_definition_lsp_fallback = "gnd",
},
},
},
},
}