From 7834005138cfdda237c4778a0256934529e02d1f Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 14 Jan 2024 04:00:21 +0100 Subject: [PATCH] feat(none-ls.lua): add none-ls plugin configuration The none-ls plugin is added to the list of plugins in the absolute configuration. The plugin is configured to load the "absolute.after.none-ls" module. This configuration allows for the integration of the none-ls plugin into the absolute plugin system. --- lua/absolute/plugins/none-ls.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/absolute/plugins/none-ls.lua diff --git a/lua/absolute/plugins/none-ls.lua b/lua/absolute/plugins/none-ls.lua new file mode 100644 index 0000000..4533d38 --- /dev/null +++ b/lua/absolute/plugins/none-ls.lua @@ -0,0 +1,7 @@ +return { + "nvimtools/none-ls.nvim", + config = function() + require("absolute.after.none-ls") + end + +}