local map = require 'utils.map' local g = vim.g g['sneak#label'] = 1 -- case insensitive sneak 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 g['sneak#s_next'] = 1 -- remap so I can use , and ; with f and t map({'n', 'v'}, 'gS', 'Sneak_;') map({'n', 'v'}, 'gs', 'Sneak_;') -- map gS Sneak_, -- map gs Sneak_; -- highlight Sneak guifg=black guibg=#00C7DF ctermfg=black ctermbg=cyan -- highlight SneakScope guifg=red guibg=yellow ctermfg=red ctermbg=yellow -- Emoji prompt g['sneak#prompt'] = '🔎'