33 lines
715 B
Lua
33 lines
715 B
Lua
|
return {
|
||
|
highlight = {
|
||
|
enable = true,
|
||
|
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",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|