From 1441601ddfc98b1dc7f91b238b87df995e98ee3d Mon Sep 17 00:00:00 2001 From: jdhao Date: Tue, 23 Nov 2021 22:35:29 +0800 Subject: [PATCH] remove plugin vim-searchlight It can be replaced by nvim-hlslens --- lua/plugins.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index a342f28..c25dd89 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -76,9 +76,6 @@ require("packer").startup({ -- Clear highlight search automatically for you use({"romainl/vim-cool", event = "VimEnter"}) - -- Show current search term in different color - use({"PeterRincker/vim-searchlight", event = "VimEnter"}) - -- Show match number for search use {'kevinhwang91/nvim-hlslens', branch = 'dev', event = "VimEnter"} @@ -330,5 +327,5 @@ require("packer").startup({ local status, _ = pcall(require, 'packer_compiled') if not status then - vim.notify("packer_compile.lua not found: run PackerSync to fix!") + vim.notify("Error requiring packer_compiled.lua: run PackerSync to fix!") end