1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-04-05 15:04:48 +02: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",
},
},
},
},
}