diff options
author | Squibid <me@zacharyscheiman.com> | 2023-06-26 11:51:46 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-06-26 11:51:46 -0400 |
commit | 53411f0176436d81538b0c927a387309dd7f0adc (patch) | |
tree | b794445c0c9f790c0833ca96150dc79a2d1ec354 /after/plugin | |
parent | f0fe14e289e79269eaf6460f843e6ffd38b2208e (diff) | |
download | nvim-53411f0176436d81538b0c927a387309dd7f0adc.tar.gz nvim-53411f0176436d81538b0c927a387309dd7f0adc.tar.bz2 nvim-53411f0176436d81538b0c927a387309dd7f0adc.zip |
regex helper :)
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' +} |