From 153a3f538eb6f79f69ffb16dc796eecd2f2fe5fc Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 10 Mar 2024 12:21:08 +0100 Subject: [PATCH] feat(otter.lua): add configuration for otter.nvim plugin to load custom settings after plugin initialization --- lua/absolute/plugins/otter.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lua/absolute/plugins/otter.lua diff --git a/lua/absolute/plugins/otter.lua b/lua/absolute/plugins/otter.lua new file mode 100644 index 0000000..8df98ff --- /dev/null +++ b/lua/absolute/plugins/otter.lua @@ -0,0 +1,6 @@ +return { + "jmbuhr/otter.nvim", + config = function() + require("absolute.after.otter") + end, +}