diff options
| author | jdhao <jdhao@hotmail.com> | 2021-08-08 22:37:12 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-08-08 22:37:12 +0800 |
| commit | de7b35e0deab733e73ac585d566767c7d67884b8 (patch) | |
| tree | 55babfd4c8f66f079166e07952557fc00c78cd6c | |
| parent | fe26dfa9c191843f884d86f2427f89d9fe4fc40f (diff) | |
change plugin load condition
vim-searchlight needs to work when we press n or N or * etc, not just
after pressing / and ?.
| -rw-r--r-- | lua/plugins.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index ab04149..ba63046 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -61,7 +61,7 @@ require('packer').startup( use {'romainl/vim-cool', event = 'CmdlineEnter'} -- Show current search term in different color - use {'PeterRincker/vim-searchlight', event = 'CmdlineEnter'} + use 'PeterRincker/vim-searchlight' -- Show match number for incsearch use {'osyo-manga/vim-anzu', event = 'CmdlineEnter'} |
