neovim: add quick-scope plugin

This commit is contained in:
teutat3s 2022-03-15 17:20:25 +01:00
parent 090575759b
commit 83074e2dff
Signed by untrusted user: teutat3s
GPG key ID: 4FA1D3FA524F22C1
2 changed files with 5 additions and 0 deletions

View file

@ -102,6 +102,7 @@ in
airline
editorconfig-vim
nnn-vim
quick-scope
suda
syntastic
vim-gutentags

View file

@ -4,6 +4,10 @@ autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
let g:gutentags_file_list_command = 'git ls-files'
" quick-scope
" https://github.com/unblevable/quick-scope
let g:qs_highlight_on_keys = ['f', 'F', 't', 'T']
" Golang
" Go test shortcut
nmap <Leader>got :GoTest<CR>:botright copen<CR>