26 lines
369 B
Lua
26 lines
369 B
Lua
return {
|
|
"piersolenski/wtf.nvim",
|
|
dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
},
|
|
opts = {},
|
|
keys = {
|
|
{
|
|
"gw",
|
|
mode = { "n", "x" },
|
|
function()
|
|
require("wtf").ai()
|
|
end,
|
|
desc = "Debug diagnostic with AI",
|
|
},
|
|
{
|
|
mode = { "n" },
|
|
"gW",
|
|
function()
|
|
require("wtf").search()
|
|
end,
|
|
desc = "Search diagnostic with Google",
|
|
},
|
|
},
|
|
}
|