diff options
Diffstat (limited to 'after/plugin/notify.lua')
-rw-r--r-- | after/plugin/notify.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/after/plugin/notify.lua b/after/plugin/notify.lua new file mode 100644 index 0000000..1a3d1e9 --- /dev/null +++ b/after/plugin/notify.lua @@ -0,0 +1,16 @@ +local status_ok, notify = pcall(require, "notify") +if not status_ok then + return +end + +notify.setup { + icons = { + DEBUG = "B", + ERROR = "x", + INFO = "i", + TRACE = "t", + WARN = "!" + }, + minimum_width = 35, + max_width = 80, +} |