2023-02-10 21:20:55 -08:00
|
|
|
return {
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
|
|
|
build = ":TSUpdate",
|
|
|
|
-- build = function()
|
|
|
|
-- pcall(require("nvim-treesitter.install").update({ with_sync = true }))
|
|
|
|
-- end,
|
|
|
|
dependencies = { "nvim-treesitter/nvim-treesitter-textobjects", "nvim-treesitter/playground" },
|
|
|
|
config = function()
|
|
|
|
require("nvim-treesitter.configs").setup({
|
|
|
|
-- Add languages to be installed here that you want installed for treesitter
|
|
|
|
ensure_installed = {
|
2024-05-19 17:11:05 -07:00
|
|
|
"awk",
|
|
|
|
"bash",
|
2023-02-10 21:20:55 -08:00
|
|
|
"c",
|
|
|
|
"cpp",
|
2024-05-19 17:11:05 -07:00
|
|
|
"css",
|
2023-02-10 21:20:55 -08:00
|
|
|
"dockerfile",
|
|
|
|
"fish",
|
|
|
|
"git_rebase",
|
|
|
|
"gitattributes",
|
|
|
|
"gitcommit",
|
|
|
|
"gitignore",
|
2024-05-19 17:11:05 -07:00
|
|
|
"go",
|
2023-02-10 21:20:55 -08:00
|
|
|
"haskell",
|
|
|
|
"hocon",
|
|
|
|
"html",
|
|
|
|
"http",
|
|
|
|
"java",
|
|
|
|
"javascript",
|
|
|
|
"json",
|
|
|
|
"json5",
|
2024-05-19 17:11:05 -07:00
|
|
|
"jsonc",
|
2023-02-10 21:20:55 -08:00
|
|
|
"latex",
|
2024-05-19 17:11:05 -07:00
|
|
|
"lua",
|
2023-02-10 21:20:55 -08:00
|
|
|
"make",
|
|
|
|
"markdown_inline",
|
|
|
|
"nix",
|
2024-05-19 17:11:05 -07:00
|
|
|
"proto",
|
|
|
|
"python",
|
|
|
|
"rust",
|
|
|
|
"scala",
|
|
|
|
"scss",
|
2023-02-10 21:20:55 -08:00
|
|
|
"sql",
|
2024-05-19 17:11:05 -07:00
|
|
|
"swift",
|
2023-02-10 21:20:55 -08:00
|
|
|
"terraform",
|
2024-05-19 17:11:05 -07:00
|
|
|
"toml",
|
|
|
|
"typescript",
|
|
|
|
"vim",
|
|
|
|
"xml",
|
2023-02-10 21:20:55 -08:00
|
|
|
"yaml",
|
|
|
|
},
|
|
|
|
|
|
|
|
-- Install parsers synchronously (only applied to `ensure_installed`)
|
|
|
|
sync_install = false,
|
|
|
|
|
|
|
|
-- Automatically install missing parsers when entering buffer
|
|
|
|
-- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally
|
|
|
|
auto_install = true,
|
|
|
|
|
|
|
|
highlight = { enable = true },
|
|
|
|
indent = { enable = true, disable = { "python" } },
|
|
|
|
incremental_selection = {
|
|
|
|
enable = true,
|
|
|
|
keymaps = {
|
|
|
|
init_selection = "<c-space>",
|
|
|
|
node_incremental = "<c-space>",
|
|
|
|
scope_incremental = "<c-s>",
|
|
|
|
node_decremental = "<c-backspace>",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
textobjects = {
|
|
|
|
select = {
|
|
|
|
enable = true,
|
|
|
|
lookahead = true, -- Automatically jump forward to textobj, similar to targets.vim
|
|
|
|
keymaps = {
|
|
|
|
-- You can use the capture groups defined in textobjects.scm
|
|
|
|
["aa"] = "@parameter.outer",
|
|
|
|
["ia"] = "@parameter.inner",
|
|
|
|
["af"] = "@function.outer",
|
|
|
|
["if"] = "@function.inner",
|
|
|
|
["ac"] = "@class.outer",
|
|
|
|
["ic"] = "@class.inner",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
move = {
|
|
|
|
enable = true,
|
|
|
|
set_jumps = true, -- whether to set jumps in the jumplist
|
|
|
|
goto_next_start = {
|
|
|
|
["]m"] = "@function.outer",
|
|
|
|
["]]"] = "@class.outer",
|
|
|
|
},
|
|
|
|
goto_next_end = {
|
|
|
|
["]M"] = "@function.outer",
|
|
|
|
["]["] = "@class.outer",
|
|
|
|
},
|
|
|
|
goto_previous_start = {
|
|
|
|
["[m"] = "@function.outer",
|
|
|
|
["[["] = "@class.outer",
|
|
|
|
},
|
|
|
|
goto_previous_end = {
|
|
|
|
["[M"] = "@function.outer",
|
|
|
|
["[]"] = "@class.outer",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
swap = {
|
|
|
|
enable = true,
|
|
|
|
swap_next = {
|
|
|
|
["<leader>a"] = "@parameter.inner",
|
|
|
|
},
|
|
|
|
swap_previous = {
|
|
|
|
["<leader>A"] = "@parameter.inner",
|
|
|
|
},
|
|
|
|
playground = {
|
|
|
|
enable = true,
|
|
|
|
disable = {},
|
|
|
|
updatetime = 25, -- Debounced time for highlighting nodes in the playground from source code
|
|
|
|
persist_queries = false, -- Whether the query persists across vim sessions
|
|
|
|
keybindings = {
|
|
|
|
toggle_query_editor = "o",
|
|
|
|
toggle_hl_groups = "i",
|
|
|
|
toggle_injected_languages = "t",
|
|
|
|
toggle_anonymous_nodes = "a",
|
|
|
|
toggle_language_display = "I",
|
|
|
|
focus_language = "f",
|
|
|
|
unfocus_language = "F",
|
|
|
|
update = "R",
|
|
|
|
goto_node = "<cr>",
|
|
|
|
show_help = "?",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
}
|