diff options
author | kylo252 <[email protected]> | 2022-05-03 08:55:15 +0200 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-05-03 08:55:15 +0200 |
commit | e264bff7e820ba891cd16892de52236d62f7821f (patch) | |
tree | 4262530ac7738ebdec0fa6abab560610789b72f3 /lua/lvim/core/notify.lua | |
parent | ad5eeaf6ad12cf05e4b936690bf78bc53827b12c (diff) | |
parent | cfa702e6fe2f875a2c674182fe2f86e8f613aa1e (diff) |
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'lua/lvim/core/notify.lua')
-rw-r--r-- | lua/lvim/core/notify.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/lvim/core/notify.lua b/lua/lvim/core/notify.lua index cb62778f..2db4c4d5 100644 --- a/lua/lvim/core/notify.lua +++ b/lua/lvim/core/notify.lua @@ -39,6 +39,15 @@ local defaults = { } function M.config() + if not lvim.use_icons then + defaults.opts.icons = { + ERROR = "[ERROR]", + WARN = "[WARNING]", + INFO = "[INFo]", + DEBUG = "[DEBUG]", + TRACE = "[TRACE]", + } + end lvim.builtin.notify = vim.tbl_deep_extend("force", defaults, lvim.builtin.notify or {}) end |