73 lines
2.0 KiB
Lua
73 lines
2.0 KiB
Lua
|
require('nvim-treesitter.configs').setup {
|
||
|
ensure_installed = 'all',
|
||
|
ignore_install = { 'phpdoc' },
|
||
|
|
||
|
sync_install = false,
|
||
|
auto_install = true,
|
||
|
|
||
|
highlight = {
|
||
|
enable = true,
|
||
|
},
|
||
|
incremental_selection = {
|
||
|
enable = true,
|
||
|
keymaps = {
|
||
|
init_selection = "gnn",
|
||
|
node_incremental = "grn",
|
||
|
scope_incremental = "grc",
|
||
|
node_decremental = "grm",
|
||
|
},
|
||
|
},
|
||
|
indent = {
|
||
|
enable = true
|
||
|
},
|
||
|
textobjects = {
|
||
|
select = {
|
||
|
enable = true,
|
||
|
lookahead = true,
|
||
|
keymaps = {
|
||
|
['af'] = '@function.outer',
|
||
|
['if'] = '@function.inner',
|
||
|
['ac'] = '@class.outer',
|
||
|
['ic'] = '@class.inner',
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
autotag = {
|
||
|
enable = true,
|
||
|
},
|
||
|
refactor = {
|
||
|
highlight_definitions = {
|
||
|
enable = true,
|
||
|
clear_on_cursor_move = true,
|
||
|
},
|
||
|
smart_rename = {
|
||
|
enable = true,
|
||
|
keymaps = {
|
||
|
smart_rename = 'grr',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
context_commentstring = {
|
||
|
enable = true,
|
||
|
enable_autocmd = false,
|
||
|
},
|
||
|
pairs = {
|
||
|
enable = true,
|
||
|
disable = {},
|
||
|
highlight_pair_events = {}, -- e.g. {"CursorMoved"}, -- when to highlight the pairs, use {} to deactivate highlighting
|
||
|
highlight_self = false, -- whether to highlight also the part of the pair under cursor (or only the partner)
|
||
|
goto_right_end = false, -- whether to go to the end of the right partner or the beginning
|
||
|
fallback_cmd_normal = "call matchit#Match_wrapper('',1,'n')", -- What command to issue when we can't find a pair (e.g. "normal! %")
|
||
|
keymaps = {
|
||
|
goto_partner = "<leader>%",
|
||
|
delete_balanced = "X",
|
||
|
},
|
||
|
delete_balanced = {
|
||
|
only_on_first_char = false, -- whether to trigger balanced delete when on first character of a pair
|
||
|
fallback_cmd_normal = nil, -- fallback command when no pair found, can be nil
|
||
|
longest_partner = false, -- whether to delete the longest or the shortest pair when multiple found.
|
||
|
-- E.g. whether to delete the angle bracket or whole tag in <pair> </pair>
|
||
|
}
|
||
|
},
|
||
|
}
|