1
Fork 0
satellite/dotfiles/neovim/lua/my/keymaps.lua
2022-01-31 22:54:22 +02:00

19 lines
469 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
function M.mapSilent(mode, lhs, rhs, opts)
local options = {silent = true}
if opts then options = vim.tbl_extend('force', options, opts) end
M.map(mode, lhs, rhs, opts)
end
function M.setup()
M.map("i", "jj", "<Esc>") -- Remap Esc to
end
return M