quickscope and sneak

This commit is contained in:
Chris 2020-04-27 23:04:13 -04:00
parent 53123f954c
commit 5fe17473ad
4 changed files with 15 additions and 2 deletions

View file

@ -25,5 +25,6 @@ else
source $HOME/.config/nvim/plug-config/fzf.vim
source $HOME/.config/nvim/plug-config/commentary.vim
source $HOME/.config/nvim/plug-config/rainbow.vim
source $HOME/.config/nvim/plug-config/sneak.vim
lua require'plug-colorizer'
endif

View file

@ -0,0 +1,2 @@
" Trigger a highlight in the appropriate direction when pressing these keys:
let g:qs_highlight_on_keys = ['f', 'F', 't', 'T']

1
plug-config/sneak.vim Normal file
View file

@ -0,0 +1 @@
let g:sneak#label = 1

View file

@ -9,8 +9,6 @@ endif
call plug#begin('~/.config/nvim/autoload/plugged')
if !exists('g:vscode')
" VSCode extension
" ordinary neovim
" Better Syntax Support
Plug 'sheerun/vim-polyglot'
" Auto pairs for '(' '[' '{'
@ -34,6 +32,17 @@ call plug#begin('~/.config/nvim/autoload/plugged')
" Add some color
Plug 'norcalli/nvim-colorizer.lua'
Plug 'junegunn/rainbow_parentheses.vim'
" Text Navigation
Plug 'justinmk/vim-sneak'
Plug 'unblevable/quick-scope'
" Git
Plug 'airblade/vim-gitgutter'
" Terminal
Plug 'voldikss/vim-floaterm'
" Start Screen
" Tabs
"
endif