mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 18:43:50 -03:00
15 lines
440 B
Lua
15 lines
440 B
Lua
return {
|
|
"marianozunino/presenterm.nvim",
|
|
config = function()
|
|
require("presenterm").setup({
|
|
patterns = {
|
|
"*.pterm",
|
|
},
|
|
auto_launch = true,
|
|
terminal_cmd = "kitty --title 'Presenterm: {title}' --override font_size=18 {cmd}",
|
|
})
|
|
|
|
nmap("<leader>pl", ":PresentermLaunch<cr>", { desc = "[Presenterm] Launch" })
|
|
nmap("<leader>ps", ":PresentermStop<cr>", { desc = "[Presenterm] Stop" })
|
|
end,
|
|
}
|