diff --git a/core/plugins.vim b/core/plugins.vim index 111b8fe..07515d9 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -48,21 +48,6 @@ command! -nargs=0 StartVlime call jobstart(printf("sbcl --load %s/vlime/lisp/sta "}} "{{ Search related -"""""""""""""""""""""""""""""vim-sneak settings""""""""""""""""""""""" -" Use sneak label mode -let g:sneak#label = 1 - -nmap f Sneak_s -xmap f Sneak_s -onoremap f :call sneak#wrap(v:operator, 2, 0, 1, 1) -nmap F Sneak_S -xmap F Sneak_S -onoremap F :call sneak#wrap(v:operator, 2, 1, 1, 1) - -" Immediately after entering sneak mode, you can press f and F to go to next -" or previous match -let g:sneak#s_next = 1 - """"""""""""""""""""""""""""" settings for nvim-hlslens""""""""""""""" noremap n execute('normal! ' . v:count1 . 'nzzzv') \lua require('hlslens').start() diff --git a/lua/config/nvim_hop.lua b/lua/config/nvim_hop.lua new file mode 100644 index 0000000..1a29126 --- /dev/null +++ b/lua/config/nvim_hop.lua @@ -0,0 +1,3 @@ +require('hop').setup() + +vim.api.nvim_set_keymap('n', 'f', "lua require'hop'.hint_char2()", {noremap = true}) diff --git a/lua/plugins.lua b/lua/plugins.lua index a2dcd3d..b646632 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -61,9 +61,8 @@ require("packer").startup({ use({ "vlime/vlime", rtp = "vim/", ft = { "lisp" } }) end - -- Super fast movement with vim-sneak - use({"justinmk/vim-sneak", event = "VimEnter"}) - use { 'phaazon/hop.nvim', event = "VimEnter", config = [[require('hop').setup()]] } + -- Super fast buffer jump + use { 'phaazon/hop.nvim', event = "VimEnter", config = [[require('config.nvim_hop')]] } -- Clear highlight search automatically for you use({"romainl/vim-cool", event = "VimEnter"})