feat: more work on nvim config
This commit is contained in:
parent
df5e333e31
commit
716113c644
4 changed files with 85 additions and 25 deletions
dotfiles/neovim/lua/my
|
@ -1,19 +1,20 @@
|
|||
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)
|
||||
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)
|
||||
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
|
||||
M.map("i", "jj", "<Esc>") -- Remap Esc to jj
|
||||
M.map("n", "<Space><Space>", ":w<cr>") -- Double space to sace
|
||||
end
|
||||
|
||||
return M
|
||||
return M
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue