vim: add alias gitgutterbuffer toggle leader mapping

feature/symbol-search
bretello 2020-03-30 03:37:39 +02:00
parent c80a32c906
commit 11870ae797
2 changed files with 2 additions and 1 deletions

View File

@ -85,7 +85,7 @@ alias gcaf='git commit -a --fixup=HEAD'
alias watcha='watch ' # note the space after watch. This makes watch work with aliases
# A short version of docker ps
alias dps='docker ps --format "table {{.Image}}\t{{.RunningFor}}\t{{.Status}}\t{{.Ports}}\t{{.Names}}\t{{.Size}"'
alias dps='docker ps --format "table {{.Image}}\t{{.RunningFor}}\t{{.Status}}\t{{.Ports}}\t{{.Names}}"'
# dotfiles user aliases
if [[ -f ~/.dotfiles_aliases ]];

View File

@ -138,3 +138,4 @@ nnoremap <leader>B :Bclose<CR>
nnoremap <leader>G :Git
nnoremap <leader>P :GPush<CR>
nnoremap <leader>M :Git commit<CR>
nnoremap <leader>u :GitGutterBufferToggle<CR>