diff options
author | kylo252 <[email protected]> | 2021-10-22 23:46:43 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-22 23:46:43 +0200 |
commit | a96a44a16a46dae0aee0f5689ccfe644d2a27c0f (patch) | |
tree | c7c9ee30b2d86437df4f723af7c9b557c66fe9d6 /lua/lvim/plugins.lua | |
parent | 10df0b5ffd0fd96b210747e9169dad08c81dca1b (diff) |
[fix] fix notify's highlight groups and make it optional (#1827)
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index a178eba5..976e5141 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -8,7 +8,10 @@ return { { "williamboman/nvim-lsp-installer", }, - { "rcarriga/nvim-notify" }, + { + "rcarriga/nvim-notify", + disable = not lvim.builtin.notify.active, + }, { "Tastyep/structlog.nvim" }, { "nvim-lua/popup.nvim" }, |