1
Fork 0

feat: fixed leader not working

This commit is contained in:
Matei Adriel 2022-04-04 10:01:13 +03:00
commit 6fe5826a29
6 changed files with 79 additions and 30 deletions
dotfiles/neovim/lua/my

View file

@ -27,8 +27,10 @@ function M.setup()
if arpeggio ~= nil then
-- Create chords
arpeggio.chord("i", "<Leader>k", "C-k") -- Rebind digraph insertion to leader+k
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
end
end
return M