nvim: Drop any jump plugin
Since we already use vim grepper this plugin does not provide much. Drop it. Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
643cdfef11
commit
a368dd07fc
1 changed files with 0 additions and 11 deletions
|
@ -99,8 +99,6 @@ Plug 'tpope/vim-vinegar'
|
|||
Plug 'Yggdroot/indentLine'
|
||||
" Floating terminal
|
||||
Plug 'voldikss/vim-floaterm'
|
||||
" Language agnostic
|
||||
Plug 'pechorin/any-jump.nvim'
|
||||
" Smooth scrolling
|
||||
Plug 'psliwka/vim-smoothie'
|
||||
" Auto correction
|
||||
|
@ -369,11 +367,6 @@ noremap <silent><expr> g/ incsearch#go(<SID>incsearch_config({'is_stay': 1}))
|
|||
nnoremap <C-\> :vsp <CR>:exec("tag ".expand("<cword>"))<CR>
|
||||
nnoremap <A-]> :sp <CR>:exec("tag ".expand("<cword>"))<CR>
|
||||
|
||||
" Any jump
|
||||
nnoremap <Leader>aj :AnyJump<CR>
|
||||
nnoremap <Leader>ab :AnyJumpBack<CR>
|
||||
nnoremap <Leader>al :AnyJumpLastResults<CR>
|
||||
|
||||
" Start interactive EasyAlign in visual mode (e.g. vipga)
|
||||
xmap ga <Plug>(EasyAlign)
|
||||
" Start interactive EasyAlign for a motion/text object (e.g. gaip)
|
||||
|
@ -502,10 +495,6 @@ let g:floaterm_height = 0.8
|
|||
let g:floaterm_winblend = 0
|
||||
let g:floaterm_borderchars = ['─', '│', '─', '│', '╭', '╮', '╯', '╰']
|
||||
|
||||
" Any jump
|
||||
let g:any_jump_disable_default_keybindings = 1
|
||||
let g:any_jump_search_prefered_engine = 'ag'
|
||||
|
||||
" Vim grepper
|
||||
let g:grepper = {}
|
||||
let g:grepper.tools = ['rg']
|
||||
|
|
Loading…
Reference in a new issue