diff options
Diffstat (limited to 'after/plugin/fidget.lua')
-rw-r--r-- | after/plugin/fidget.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/after/plugin/fidget.lua b/after/plugin/fidget.lua new file mode 100644 index 0000000..ee412a7 --- /dev/null +++ b/after/plugin/fidget.lua @@ -0,0 +1,14 @@ +local status_ok, fidget = pcall(require, "fidget") +if not status_ok then + return +end + +fidget.setup { + text = { + spinner = "line", + done = ":)", + }, + window = { + zindex = 1, + } +} |