feat(plugin): remove bqf plugin and add nvim-notify plugin

This commit is contained in:
doryan 2024-10-22 01:33:42 +04:00
parent a6c2687a8f
commit 01b7c4e280

View File

@ -90,9 +90,6 @@ lvim.plugins = {
{ {
'rust-lang/rust.vim', 'rust-lang/rust.vim',
}, },
{
'kevinhwang91/nvim-bqf'
},
{ {
'MunifTanjim/prettier.nvim' 'MunifTanjim/prettier.nvim'
}, },
@ -255,6 +252,9 @@ lvim.plugins = {
{ {
"tanvirtin/monokai.nvim" "tanvirtin/monokai.nvim"
}, },
{
"rcarriga/nvim-notify",
},
{ {
"folke/noice.nvim", "folke/noice.nvim",
event = "VeryLazy", event = "VeryLazy",
@ -270,9 +270,13 @@ lvim.plugins = {
}, },
}, },
dependencies = { dependencies = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim", "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", "rcarriga/nvim-notify",
}, }
}, },
} }