From 4b6c92e7ede68fb0f098f4483c4c05651086f900 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 29 Jul 2024 01:01:28 +0100 Subject: [PATCH] feat(otter.lua): add configuration for otter.nvim plugin to support Python and Lua filetypes --- lua/absolute/disabled/otter.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/absolute/disabled/otter.lua diff --git a/lua/absolute/disabled/otter.lua b/lua/absolute/disabled/otter.lua new file mode 100644 index 0000000..e5caa84 --- /dev/null +++ b/lua/absolute/disabled/otter.lua @@ -0,0 +1,7 @@ +return { + "jmbuhr/otter.nvim", + config = function() + require("absolute.after.otter") + end, + ft = { "py", "lua" } +}