diff --git a/nvim/.config/nvim/lua/keymappings.lua b/nvim/.config/nvim/lua/keymappings.lua index 46bc0e9..d08d3be 100644 --- a/nvim/.config/nvim/lua/keymappings.lua +++ b/nvim/.config/nvim/lua/keymappings.lua @@ -125,6 +125,9 @@ remap('v', '>', '>gv', { noremap = true }) -- Select last pasted/yanked text remap('n', 'g', '`[v`]', { noremap = true }) +-- Map ;; to : +remap('n', ';;', ':', { noremap = true }) + -- Marks -- '0 - Position of cursor when last exited Vim. -- '" - Position of cursor when last exited the current buffer.