1
Fork 0
satellite/dotfiles/neovim/lua/my/keymaps.lua

41 lines
1.2 KiB
Lua
Raw Normal View History

2022-03-09 19:03:04 +01:00
local helpers = require("my.helpers")
local arpeggio = require("my.plugins.arpeggio")
2022-05-10 14:28:36 +02:00
local au = require("my.helpers.augroup")
2022-03-09 19:03:04 +01:00
2022-01-30 19:10:57 +01:00
local M = {}
2022-01-31 21:41:13 +01:00
function M.map(mode, lhs, rhs, opts)
if string.len(mode) > 1 then
for i = 1, #mode do
local c = mode:sub(i, i)
M.map(c, lhs, rhs, opts)
end
else
local options = helpers.mergeTables(opts, {noremap = true})
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
end
2022-01-30 19:10:57 +01:00
end
2022-01-31 21:54:22 +01:00
function M.mapSilent(mode, lhs, rhs, opts)
2022-03-09 19:03:04 +01:00
local options = helpers.mergeTables(opts, {silent = true})
M.map(mode, lhs, rhs, options)
2022-01-31 21:54:22 +01:00
end
2022-01-30 19:10:57 +01:00
function M.setup()
2022-03-09 19:03:04 +01:00
M.map("n", "vv", "<C-w>v") -- Create vertical split
M.map("n", "qq", ":wq<cr>") -- Create vertical split
if arpeggio ~= nil then
-- Create chords
2022-04-06 22:19:19 +02:00
arpeggio.chord("n", "ji", ":w<cr>") -- Saving
arpeggio.chord("i", "jk", "<Esc>") -- Remap Esc to jk
2022-04-04 09:01:13 +02:00
arpeggio.chord("i", "<Leader>k", "<C-k><cr>") -- Rebind digraph insertion to leader+k
arpeggio.chord("inv", "<Leader>a", "<C-6><cr>") -- Rebind switching to the last pane using leader+a
2022-06-18 23:09:21 +02:00
arpeggio.chord("nv", "cp", "\"+") -- Press cp to use the global clipboard
end
2022-05-10 14:28:36 +02:00
return M
2022-01-30 20:19:35 +01:00
end
2022-02-01 00:06:48 +01:00
return M