123456789101112131415 |
- let g:sneak#label = 1
- " case insensitive sneak
- let g:sneak#use_ic_scs = 1
- " immediately move to the next instance of search, if you move the cursor sneak
- " is back to default behavior
- let g:sneak#s_next = 1
- " change the colors
- highlight Sneak guifg=black guibg=#00C7DF ctermfg=black ctermbg=cyan
- highlight SneakScope guifg=red guibg=yellow ctermfg=red ctermbg=yellow
- " custom prompt
- let g:sneak#prompt = '🔎'
|