diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2021-10-06 18:37:53 +0200 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2021-10-06 18:39:51 +0200 |
commit | 249d91502b7647a72399b180bfcbe0de96239764 (patch) | |
tree | a39c2a83b025d1695b765dd0a678bc25dd4b1b55 | |
parent | e7434e9d2f5f5a7695a35c09066d8c1cc2b29b58 (diff) |
vim added a switch upper/lower case binding
-rw-r--r-- | .config/nvim/lua/binds.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/nvim/lua/binds.lua b/.config/nvim/lua/binds.lua index 55225d4..49f4620 100644 --- a/.config/nvim/lua/binds.lua +++ b/.config/nvim/lua/binds.lua @@ -8,6 +8,7 @@ map('', 'Y', 'y$', opts) map('n', '<C-L>', ':nohl<CR><C-L>', opts) map('n', 'n', 'nzzzv', opts) map('n', 'N', 'Nzzzv', opts) +map('n', '<leader>sc', '~', opts) map('i', 'kj', '<Esc>', opts) map('i', ',', ',<c-g>u', opts) |