Files
dotfiles/vim/.vim/lua/utils.lua
Christian Nieves 21837e0336 lua stuff
2022-10-18 17:47:44 +00:00

12 lines
239 B
Lua

local M = {}
function M.map(mode, lhs, rhs, opts)
local options = { noremap = true }
if opts then
options = vim.tbl_extend("force", options, opts)
end
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
end
return M