mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-13 03:37:17 +00:00
10 lines
211 B
Lua
10 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]]
|