diff options
author | Squibid <me@zacharyscheiman.com> | 2024-03-09 00:02:02 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-03-09 00:02:02 -0500 |
commit | debeca659ae2e41ca3f248a5ee30dbbaca6aebc8 (patch) | |
tree | b742b75fa35ff939062e25b7a8eb185744137084 /after | |
parent | 6deb1b6a6bd72319db2845a53450a6039c613954 (diff) | |
download | nvim-debeca659ae2e41ca3f248a5ee30dbbaca6aebc8.tar.gz nvim-debeca659ae2e41ca3f248a5ee30dbbaca6aebc8.tar.bz2 nvim-debeca659ae2e41ca3f248a5ee30dbbaca6aebc8.zip |
update harpoon to harpoon 2
Diffstat (limited to 'after')
-rw-r--r-- | after/plugin/harpoon.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/after/plugin/harpoon.lua b/after/plugin/harpoon.lua new file mode 100644 index 0000000..61b970a --- /dev/null +++ b/after/plugin/harpoon.lua @@ -0,0 +1,6 @@ +local status_ok, harpoon = pcall(require, "harpoon") +if not status_ok then + return +end + +harpoon.setup {} |