nvim/lua/plugins/presenterm.lua
2025-03-28 20:27:12 -03:00

16 lines
321 B
Lua

return {
"marianozunino/presenterm.nvim",
config = function()
require("presenterm").setup({
patterns = {
"*.presenterm",
"*.pterm",
"*.md",
},
auto_launch = true,
terminal_cmd = "kitty --title 'Presenterm: {title}' --override font_size=18 {cmd}",
})
end,
}