mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-05-05 23:38:36 +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]]
|