mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-04 18:14:40 +02:00
quickscope and sneak
This commit is contained in:
parent
53123f954c
commit
5fe17473ad
4 changed files with 15 additions and 2 deletions
1
init.vim
1
init.vim
|
@ -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
|
||||
|
|
2
plug-config/quickscope.vim
Normal file
2
plug-config/quickscope.vim
Normal 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
1
plug-config/sneak.vim
Normal file
|
@ -0,0 +1 @@
|
|||
let g:sneak#label = 1
|
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue