1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Change plugin load condition

This commit is contained in:
jdhao 2021-08-08 22:04:56 +08:00
parent ac4bb6c162
commit 1ead4f7824

View File

@ -58,13 +58,13 @@ require('packer').startup(
use 'justinmk/vim-sneak'
-- Clear highlight search automatically for you
use 'romainl/vim-cool'
use {'romainl/vim-cool', event = 'CmdlineEnter'}
-- Show current search term in different color
use 'PeterRincker/vim-searchlight'
use {'PeterRincker/vim-searchlight', event = 'CmdlineEnter'}
-- Show match number for incsearch
use 'osyo-manga/vim-anzu'
use {'osyo-manga/vim-anzu', event = 'CmdlineEnter'}
-- Stay after pressing * and search selected text
use 'haya14busa/vim-asterisk'