summaryrefslogtreecommitdiffstats
path: root/lua/core/overrides/notify.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lua/core/overrides/notify.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/core/overrides/notify.lua b/lua/core/overrides/notify.lua
new file mode 100644
index 0000000..f816d86
--- /dev/null
+++ b/lua/core/overrides/notify.lua
@@ -0,0 +1,14 @@
+require('notify').setup(
+ {
+ icons = {
+ DEBUG = "B",
+ ERROR = "x",
+ INFO = "i",
+ TRACE = "t",
+ WARN = "!"
+ },
+ minimum_width = 35,
+ max_width = 80,
+ render = "compact",
+ }
+)