From 97c0e26c5b7fdf1196d4976edc8c86af5f39475c Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 1 Jul 2024 15:53:15 +0100 Subject: [PATCH] style(otter.lua): fix indentation and spacing for better code readability feat(otter.lua): add file type (ft) configuration for Python and Lua files --- lua/absolute/plugins/otter.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lua/absolute/plugins/otter.lua b/lua/absolute/plugins/otter.lua index 8df98ff..e5caa84 100644 --- a/lua/absolute/plugins/otter.lua +++ b/lua/absolute/plugins/otter.lua @@ -1,6 +1,7 @@ return { - "jmbuhr/otter.nvim", - config = function() - require("absolute.after.otter") - end, + "jmbuhr/otter.nvim", + config = function() + require("absolute.after.otter") + end, + ft = { "py", "lua" } }