diff options
Diffstat (limited to 'after/plugin')
-rw-r--r-- | after/plugin/hypersonic.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/after/plugin/hypersonic.lua b/after/plugin/hypersonic.lua new file mode 100644 index 0000000..2954d92 --- /dev/null +++ b/after/plugin/hypersonic.lua @@ -0,0 +1,8 @@ +local status_ok, hypersonic = pcall(require, "hypersonic") +if not status_ok then + return +end + +hypersonic.setup { + border = 'shadow' +} |