From 2a47d47b8b0d8c8cbf91e7991ee84ed48dadb76b Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 14 Jan 2024 03:41:44 +0100 Subject: [PATCH] feat(treesj.lua): add treesj plugin configuration Add a new file `treesj.lua` to the `absolute/plugins` directory. The file contains the configuration for the `treesj` plugin. The plugin is sourced from the repository `Wansmer/treesj` and has a dependency on `nvim-treesitter/nvim-treesitter`. The configuration includes loading the `absolute.after.treesj` module. --- lua/absolute/plugins/treesj.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/absolute/plugins/treesj.lua diff --git a/lua/absolute/plugins/treesj.lua b/lua/absolute/plugins/treesj.lua new file mode 100644 index 0000000..cece1b4 --- /dev/null +++ b/lua/absolute/plugins/treesj.lua @@ -0,0 +1,7 @@ +return { + "Wansmer/treesj", + dependencies = { "nvim-treesitter/nvim-treesitter" }, + config = function() + require("absolute.after.treesj") + end, +}