diff options
author | kylo252 <[email protected]> | 2022-01-02 10:25:20 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-01-02 10:25:20 +0100 |
commit | 9017389766ff1ce31c8f0a21fe667653a7ab6b3a (patch) | |
tree | 63915a205fb0456ed618317c0a77f006f1cfcfae /lua/lvim/plugins.lua | |
parent | 91077623f093bf173ea9b224bb7bde15f3c2a13b (diff) |
feat: lazyload notify's configuration (#1855)
Co-authored-by: Luc Sinet <[email protected]>
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 7585469f..35b273c5 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -53,6 +53,10 @@ return { "rcarriga/nvim-notify", commit = commit.nvim_notify, disable = not lvim.builtin.notify.active, + config = function() + require("lvim.core.notify").setup() + end, + event = "BufRead", }, { "Tastyep/structlog.nvim", commit = commit.structlog }, |