mirror of
				https://github.com/ItsDrike/dotfiles.git
				synced 2025-11-04 01:16:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			211 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			211 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
local vim = require("vim")
 | 
						|
local cmd = vim.cmd
 | 
						|
 | 
						|
cmd[[Plug 'tpope/vim-commentary']]
 | 
						|
 | 
						|
nmap("<A-/>", ":Commentary<CR>")
 | 
						|
vmap("<A-/>", ":Commentary<CR>")
 | 
						|
 | 
						|
cmd[[autocmd FileType apache setlocal commentstring=#\ %s]]
 |