mirror of
				https://github.com/marianozunino/nvim.git
				synced 2025-10-29 11:50:41 -03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			385 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			385 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| local M = {
 | |
|   "laytan/cloak.nvim",
 | |
| }
 | |
| 
 | |
| M.config = function()
 | |
|   require("cloak").setup({
 | |
|     cloak_character = "*",
 | |
|     highlight_group = "Comment",
 | |
|     patterns = {
 | |
|       {
 | |
|         file_pattern = {
 | |
|           ".env*",
 | |
|           "wrangler.toml",
 | |
|           ".dev.vars",
 | |
|         },
 | |
|         cloak_pattern = "=.+",
 | |
|       },
 | |
|     },
 | |
|   })
 | |
| 
 | |
|   nmap("<Leader>cc", ":CloakToggle<cr>")
 | |
| end
 | |
| 
 | |
| return M
 |