nvim: Add tpope's abolish plugin

This commit is contained in:
doyle 2022-11-25 20:18:09 +11:00
parent 5e991fb1de
commit 51c6d505de

View File

@ -6,6 +6,7 @@ call plug#begin(stdpath('config') . '/plugged')
Plug 'https://github.com/scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'https://github.com/tpope/vim-dispatch'
Plug 'https://github.com/tpope/vim-fugitive'
Plug 'https://github.com/tpope/vim-abolish'
" TODO: 2022-06-19 Treesitter is too slow on large C++ files
" Plug 'https://github.com/nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
@ -112,6 +113,11 @@ lua <<EOF
" <cd> change working directory to current file",
" <\\s> split buffer vertically",
"",
" Abolish Plugin (Text Substitution) (Normal Mode)",
" --------------------------------------------------",
" %Subvert/facilit{y,ies}/building{,s}/g Convert facility->building, facilities->buildings",
" %Subvert/action/sleep/g Convert action to sleep, (preserve case sensitivity ACTION->SLEEP, action->sleep) ",
"",
" Telescope Bindings (Normal Mode)",
" --------------------------------------------------",
" <\\te> open telescope menu",