LunarVim/plug-config/quickscope.vim

8 lines
362 B
VimL
Raw Normal View History

2020-04-28 05:04:13 +02:00
" Trigger a highlight in the appropriate direction when pressing these keys:
2020-05-05 03:28:46 +02:00
" ; repeat forward , repeat backwards
2020-04-28 05:04:13 +02:00
let g:qs_highlight_on_keys = ['f', 'F', 't', 'T']
2020-05-04 07:10:29 +02:00
highlight QuickScopePrimary guifg='#00C7DF' gui=underline ctermfg=155 cterm=underline
2020-05-05 03:28:46 +02:00
highlight QuickScopeSecondary guifg='#afff5f' gui=underline ctermfg=81 cterm=underline
2020-05-04 07:10:29 +02:00
let g:qs_max_chars=150