diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-15 23:33:50 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-15 23:33:50 +0100 |
commit | 06c386f6d7e737fe22927190be6057c2e09240df (patch) | |
tree | 9fc395514387bbf9bf51f45661c798bbda3935a5 /.config/nvim/plug-config/sneak.vim | |
parent | 855f4e4f0f22b35641f13614e46b9ab7f6818188 (diff) |
Delete old vim scripts
Diffstat (limited to '.config/nvim/plug-config/sneak.vim')
-rw-r--r-- | .config/nvim/plug-config/sneak.vim | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/.config/nvim/plug-config/sneak.vim b/.config/nvim/plug-config/sneak.vim deleted file mode 100644 index 2641dc9..0000000 --- a/.config/nvim/plug-config/sneak.vim +++ /dev/null @@ -1,25 +0,0 @@ -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 - -" remap so I can use , and ; with f and t -map gS <Plug>Sneak_, -map gs <Plug>Sneak_; - -" Change the colors -highlight Sneak guifg=black guibg=#00C7DF ctermfg=black ctermbg=cyan -highlight SneakScope guifg=red guibg=yellow ctermfg=red ctermbg=yellow - -" Cool prompts -" let g:sneak#prompt = '🕵️' -let g:sneak#prompt = '🔎 ' - -" I like quickscope better for this since it keeps me in the scope of a single line -" map f <Plug>Sneak_f -" map F <Plug>Sneak_F -" map t <Plug>Sneak_t -" map T <Plug>Sneak_T |