mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
35 lines
508 B
Lua
35 lines
508 B
Lua
return {
|
|
{
|
|
|
|
"ThePrimeagen/refactoring.nvim",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
},
|
|
opts = {
|
|
prompt_func_return_type = {
|
|
go = true,
|
|
java = true,
|
|
|
|
cpp = true,
|
|
c = true,
|
|
h = true,
|
|
hpp = true,
|
|
cxx = true,
|
|
},
|
|
prompt_func_param_type = {
|
|
go = true,
|
|
java = true,
|
|
|
|
cpp = true,
|
|
c = true,
|
|
h = true,
|
|
hpp = true,
|
|
cxx = true,
|
|
},
|
|
printf_statements = {},
|
|
print_var_statements = {},
|
|
},
|
|
},
|
|
}
|