diff options
author | Philippe Richard <[email protected]> | 2022-10-02 23:48:23 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-02 23:48:23 -0400 |
commit | 8767a17b5e6087153494a5cd30e5ae0c5165c9af (patch) | |
tree | 40f57839009330a85471662acf12f87f6e46017d /lua/lvim/core/notify.lua | |
parent | 228658b02e083d0294b737b39275f3b62c007b94 (diff) |
feat: move icons to a single icons file (#3115)
Diffstat (limited to 'lua/lvim/core/notify.lua')
-rw-r--r-- | lua/lvim/core/notify.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/lvim/core/notify.lua b/lua/lvim/core/notify.lua index 72133c27..272fdced 100644 --- a/lua/lvim/core/notify.lua +++ b/lua/lvim/core/notify.lua @@ -29,11 +29,11 @@ local defaults = { ---@usage Icons for the different levels icons = { - ERROR = "ï™™", - WARN = "", - INFO = "ï µ", - DEBUG = "", - TRACE = "✎", + ERROR = lvim.icons.diagnostics.Error, + WARN = lvim.icons.diagnostics.Warning, + INFO = lvim.icons.diagnostics.Information, + DEBUG = lvim.icons.diagnostics.Debug, + TRACE = lvim.icons.diagnostics.Trace, }, }, } |