2023-02-19 23:01:47 +01:00
|
|
|
return {
|
2023-03-27 14:42:59 +02:00
|
|
|
-- Highlight, edit, and navigate code
|
2023-02-19 23:01:47 +01:00
|
|
|
'nvim-treesitter/nvim-treesitter',
|
|
|
|
dependencies = {
|
|
|
|
'nvim-treesitter/nvim-treesitter-textobjects',
|
|
|
|
'nvim-treesitter/nvim-treesitter-context',
|
|
|
|
'nvim-treesitter/nvim-treesitter-refactor',
|
|
|
|
},
|
|
|
|
config = function()
|
|
|
|
pcall(require('nvim-treesitter.install').update { with_sync = true })
|
|
|
|
|
|
|
|
-- [[ Configure Treesitter ]]
|
|
|
|
-- See `:help nvim-treesitter`
|
|
|
|
require('nvim-treesitter.configs').setup {
|
|
|
|
-- Add languages to be installed here that you want installed for treesitter
|
2023-05-17 00:25:21 +02:00
|
|
|
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim', 'markdown' },
|
2023-02-19 23:01:47 +01:00
|
|
|
|
|
|
|
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
|
|
|
|
auto_install = true,
|
|
|
|
|
|
|
|
highlight = { enable = true },
|
|
|
|
indent = { enable = true, disable = { 'python' } },
|
|
|
|
incremental_selection = {
|
|
|
|
enable = true,
|
|
|
|
keymaps = {
|
2023-02-24 11:04:30 +01:00
|
|
|
init_selection = '<C-Space>',
|
|
|
|
node_incremental = '<C-Space>',
|
2023-05-21 21:39:35 +02:00
|
|
|
scope_incremental = '<C-M-Space>',
|
2023-02-24 11:04:30 +01:00
|
|
|
node_decremental = '<C-Bslash>',
|
2023-02-19 23:01:47 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
-- refactor
|
|
|
|
refactor = {
|
|
|
|
highlight_definitions = { enable = true, clear_on_cursor_move = true },
|
|
|
|
},
|
|
|
|
-- textobjects
|
|
|
|
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',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end,
|
|
|
|
}
|