2024-02-26 19:46:46 +00:00
|
|
|
return {
|
2024-03-03 00:46:46 +00:00
|
|
|
|
2024-02-26 19:46:46 +00:00
|
|
|
{ -- Highlight, edit, and navigate code
|
|
|
|
'nvim-treesitter/nvim-treesitter',
|
2024-03-03 00:46:46 +00:00
|
|
|
dependencies = {
|
2024-03-07 11:50:18 +00:00
|
|
|
'windwp/nvim-ts-autotag',
|
2024-03-03 00:46:46 +00:00
|
|
|
'nvim-treesitter/nvim-treesitter-context',
|
|
|
|
'nvim-treesitter/nvim-treesitter-textobjects',
|
|
|
|
},
|
2024-02-26 19:46:46 +00:00
|
|
|
build = ':TSUpdate',
|
2024-03-12 00:13:38 +00:00
|
|
|
opts = {
|
2024-03-19 12:36:17 +00:00
|
|
|
ensure_installed = {
|
|
|
|
'lua',
|
|
|
|
'python',
|
|
|
|
'rust',
|
|
|
|
'javascript',
|
|
|
|
'typescript',
|
|
|
|
'vimdoc',
|
|
|
|
'vim',
|
|
|
|
'svelte',
|
|
|
|
'c_sharp',
|
2024-04-08 13:13:07 +00:00
|
|
|
'luadoc',
|
2024-03-19 12:36:17 +00:00
|
|
|
'markdown',
|
2024-03-19 12:36:32 +00:00
|
|
|
'gitcommit',
|
|
|
|
'gitignore',
|
2024-03-19 12:36:17 +00:00
|
|
|
},
|
2024-03-12 00:13:38 +00:00
|
|
|
-- Autoinstall languages that are not installed
|
|
|
|
auto_install = true,
|
2024-03-17 13:34:39 +00:00
|
|
|
-- Enable autotags and -rename
|
|
|
|
autotag = {
|
|
|
|
enable = true,
|
|
|
|
enable_autocmd = true,
|
|
|
|
},
|
2024-03-15 17:15:40 +00:00
|
|
|
highlight = {
|
|
|
|
enable = true,
|
|
|
|
-- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules.
|
|
|
|
-- If you are experiencing weird indenting issues, add the language to
|
|
|
|
-- the list of additional_vim_regex_highlighting and disabled languages for indent.
|
2024-03-19 12:36:17 +00:00
|
|
|
disable = { 'markdown' },
|
2024-03-15 17:15:40 +00:00
|
|
|
additional_vim_regex_highlighting = { 'ruby' },
|
|
|
|
},
|
|
|
|
indent = { enable = true, disable = { 'ruby' } },
|
2024-03-17 13:34:39 +00:00
|
|
|
incremental_selection = {
|
|
|
|
enable = true,
|
|
|
|
keymaps = {
|
|
|
|
init_selection = '<c-space>',
|
|
|
|
node_incremental = '<c-space>',
|
|
|
|
scope_incremental = '<c-s>',
|
|
|
|
node_decremental = '<M-space>',
|
2024-03-07 11:50:18 +00:00
|
|
|
},
|
2024-03-17 13:34:39 +00:00
|
|
|
},
|
|
|
|
textobjects = {
|
|
|
|
select = {
|
2024-03-01 08:15:22 +00:00
|
|
|
enable = true,
|
2024-03-17 13:34:39 +00:00
|
|
|
lookahead = true, -- Automatically jump forward to textobj, similar to targets.vim
|
2024-03-01 08:15:22 +00:00
|
|
|
keymaps = {
|
2024-03-17 13:34:39 +00:00
|
|
|
-- 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',
|
2024-03-01 08:15:22 +00:00
|
|
|
},
|
|
|
|
},
|
2024-03-17 13:34:39 +00:00
|
|
|
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',
|
2024-03-01 08:15:22 +00:00
|
|
|
},
|
2024-03-17 13:34:39 +00:00
|
|
|
goto_previous_end = {
|
|
|
|
['[M'] = '@function.outer',
|
|
|
|
['[]'] = '@class.outer',
|
2024-03-01 08:15:22 +00:00
|
|
|
},
|
2024-03-17 13:34:39 +00:00
|
|
|
},
|
|
|
|
swap = {
|
|
|
|
enable = true,
|
|
|
|
swap_next = {
|
|
|
|
['<leader>a'] = '@parameter.inner',
|
|
|
|
},
|
|
|
|
swap_previous = {
|
|
|
|
['<leader>A'] = '@parameter.inner',
|
2024-03-01 08:15:22 +00:00
|
|
|
},
|
|
|
|
},
|
2024-03-17 13:34:39 +00:00
|
|
|
},
|
2024-03-12 00:13:38 +00:00
|
|
|
},
|
|
|
|
config = function(_, opts)
|
2024-02-26 19:46:46 +00:00
|
|
|
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
|
|
|
|
|
|
|
|
---@diagnostic disable-next-line: missing-fields
|
2024-03-12 00:13:38 +00:00
|
|
|
require('nvim-treesitter.configs').setup(opts)
|
2024-02-26 19:46:46 +00:00
|
|
|
end,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|