Added gb keybinding

master
Jef Roosens 2020-10-25 10:10:44 +01:00
parent fb3f11ba20
commit 6b6eccf959
2 changed files with 11 additions and 2 deletions

View File

@ -23,6 +23,7 @@ nnoremap <silent> <leader>pwr :CocSearch <C-R>=expand("<cword>")<CR><CR>
" Go to definition
nmap gd <Plug>(coc-definition)
nmap gb <C-o>
nmap gi <Plug>(coc-implementation)
nmap gr <Plug>(coc-references)

View File

@ -6,7 +6,7 @@ call plug#begin('~/.config/nvim/plugged')
" definitions easily.
Plug 'ludovicchabant/vim-gutentags', { 'commit': '31c0ead' }
" Plug 'Shougo/denite.nvim', { 'do': ':UpdateRemotePlugins' }
" File navigation
Plug 'ctrlpvim/ctrlp.vim'
" Git client within Vim
@ -36,6 +36,7 @@ Plug 'hynek/vim-python-pep8-indent'
" Text object based on current indent level (e.g. Python)
Plug 'michaeljsmith/vim-indent-object'
" Sidebar showing file structure
Plug 'scrooloose/nerdtree'
" Toml syntax highlighting
@ -44,9 +45,16 @@ Plug 'cespare/vim-toml'
" Auto-bracket pairs
Plug 'jiangmiao/auto-pairs'
" Auto-align text
" This plugin allows you to align text according to specified delimiters
" e.g. this:
" x = 5
" alongname = 15
" can become this:
" x = 15
" alongname = 15
Plug 'godlygeek/tabular'
" Some auto-complete for haskell
Plug 'neovimhaskell/haskell-vim'
call plug#end()