automatically toggle line numbers for buffers

This commit is contained in:
Marty Oehme 2019-03-20 22:46:24 +01:00
parent 2136b3eb97
commit bb0c041d5e

View file

@ -38,6 +38,9 @@ silent! if plug#begin('~/.local/share/nvim/plugged')
Plug 'tpope/vim-sensible' Plug 'tpope/vim-sensible'
" add seamless movement between vim and tmux, switch windows with C-hjkl " add seamless movement between vim and tmux, switch windows with C-hjkl
Plug 'christoomey/vim-tmux-navigator' Plug 'christoomey/vim-tmux-navigator'
" automatically switch between relative and absolute numbers as buffers move
" into / out of focus (requires number & relativenumber to be set)
Plug 'jeffkreeftmeijer/vim-numbertoggle'
" Workflow " Workflow
Plug 'tpope/vim-commentary' " easily toggle comments for lines, paragraphs etc with gc Plug 'tpope/vim-commentary' " easily toggle comments for lines, paragraphs etc with gc