mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 10:33:49 -03:00
16 lines
321 B
Lua
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,
|
|
}
|