aboutsummaryrefslogtreecommitdiff
path: root/map.lua
blob: 3687a935f43153c0154b91234fa6845b9c5d18d6 (plain)
1
2
3
4
5
6
7
function map(mode, combo, mapping, opts)
	local options = { noremap = true, silent = true }
	if opts then
		options = vim.tbl_extend("force", options, opts)
	end
	vim.api.nvim_set_keymap(mode, combo, mapping, options)
end