Skip to content
Snippets Groups Projects
Commit fcce0a4b authored by codecraft's avatar codecraft :crocodile:
Browse files

change the ';' and ',' keymap in normal mode to <leader>;/, because

of problem with motions
parent e019e6af
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,8 @@ local map = vim.keymap
map.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true })
-- end of line semicolon and comma
map.set('n', ';', 'A;<ESC>')
map.set('n', ',', 'A,<ESC>')
map.set('n', '<leader>;', 'A;<ESC>')
map.set('n', '<leader>,', 'A,<ESC>')
-- Remap for dealing with word wrap
-- map.set('n', 'k', "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment