1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-03-28 18:34:46 +01:00
Files
dotfiles/.config/nvim/lua/plugins/pantran.lua

27 lines
442 B
Lua

return {
-- translator
"potamides/pantran.nvim",
keys = {
{
"<leader>tr",
"<cmd>Pantran<CR>",
mode = { "n", "v" },
desc = "Pantran: translate",
},
},
opts = {
default_engine = "google",
-- default_engine = "deepl",
engines = {
deepl = {
default_target = "de",
},
google = {
fallback = {
default_target = "de",
},
},
},
},
}