nvim/lua/plugins/treesitter.lua

61 lines
1.6 KiB
Lua
Raw Permalink Normal View History

local options = {
highlight = {
enable = true,
disable = { "fortran" },
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",
},
},
},
}
if vim.fn.executable "nix" == 1 then
options.auto_install = true
options.ensure_installed = "all"
end
return {
"nvim-treesitter/nvim-treesitter",
version = false,
build = ":TSUpdate",
cmd = { "TSUpdate", "TSInstall" },
event = { "BufReadPre", "BufNewFile" },
2023-06-10 08:29:21 +01:00
dependencies = "nvim-treesitter/nvim-treesitter-refactor",
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 = options,
}