mirror of
				https://github.com/marianozunino/nvim.git
				synced 2025-10-29 11:50:41 -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,
 | |
| }
 |