diff options
author | Santo Cariotti <santo@dcariotti.me> | 2020-12-18 23:22:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-18 23:22:33 +0100 |
commit | 11b1e71789c39384c5e7cf712320fd6507b41253 (patch) | |
tree | 3f30ff48918733cf5731fd0dcfbe0b1f24d9cd07 | |
parent | 33d17425955a2c196e58fbb06bfa14269008db69 (diff) |
vim: back to nmap instead of cmap
-rwxr-xr-x | vim/.vimrc | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -88,7 +88,7 @@ nnoremap k gk nnoremap tn :tabnew<CR> nnoremap ve :Vexplore<CR> -cnoremap rt RainbowToggle<CR> +nnoremap rt :RainbowToggle<CR> " buffers nnoremap ]b :bnext<CR> @@ -109,11 +109,11 @@ nnoremap ,o :only<CR> " co = open commits explorer " gf = open git ls-files " gs = open git status -cnoremap ff Files .<CR> -cnoremap co Commits<CR> -cnoremap gf GFiles<CR> -cnoremap gs GFiles?<CR> -cnoremap gd Git diff<CR> +nnoremap :ff :Files .<CR> +nnoremap :co :Commits<CR> +nnoremap :gf :GFiles<CR> +nnoremap :gs :GFiles?<CR> +nnoremap :gd :Git diff<CR> nnoremap :pa :set paste<CR> nnoremap :npa :set nopaste<CR> |