diff options
author | Squibid <me@zacharyscheiman.com> | 2023-02-15 23:11:33 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-02-15 23:11:33 -0500 |
commit | 70abc1f30f772757088b13d97256423385156080 (patch) | |
tree | 15d71d3973c41d8566304e5943a966e2d1e10d91 /lua/core/overrides/notify.lua | |
parent | 74c846a7b6461c2be572c3778d67d5df682a34e9 (diff) | |
download | nvim-70abc1f30f772757088b13d97256423385156080.tar.gz nvim-70abc1f30f772757088b13d97256423385156080.tar.bz2 nvim-70abc1f30f772757088b13d97256423385156080.zip |
Major changes including better ui and more keybinds :)
Diffstat (limited to 'lua/core/overrides/notify.lua')
-rw-r--r-- | lua/core/overrides/notify.lua | 14 |
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", + } +) |