From 01b7c4e280de99e990fadedd9a2754c4baf82ecf Mon Sep 17 00:00:00 2001 From: doryan Date: Tue, 22 Oct 2024 01:33:42 +0400 Subject: [PATCH] feat(plugin): remove bqf plugin and add nvim-notify plugin --- lvim/lua/plugins/init.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lvim/lua/plugins/init.lua b/lvim/lua/plugins/init.lua index f206847..46196b8 100644 --- a/lvim/lua/plugins/init.lua +++ b/lvim/lua/plugins/init.lua @@ -90,9 +90,6 @@ lvim.plugins = { { 'rust-lang/rust.vim', }, - { - 'kevinhwang91/nvim-bqf' - }, { 'MunifTanjim/prettier.nvim' }, @@ -255,6 +252,9 @@ lvim.plugins = { { "tanvirtin/monokai.nvim" }, + { + "rcarriga/nvim-notify", + }, { "folke/noice.nvim", event = "VeryLazy", @@ -270,9 +270,13 @@ lvim.plugins = { }, }, dependencies = { + -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries "MunifTanjim/nui.nvim", + -- OPTIONAL: + -- `nvim-notify` is only needed, if you want to use the notification view. + -- If not available, we use `mini` as the fallback "rcarriga/nvim-notify", - }, + } }, }