From 06bf692896ed8b1b516e5401dc9f53846ea978d2 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Thu, 24 Sep 2026 19:08:36 +0200 Subject: [PATCH] feat: Move personal plugins in separate dir --- lua/lazy_setup.lua | 1 + lua/plugins/{ => custom}/betterTerm.lua | 0 lua/plugins/{ => custom}/bullets.lua | 0 lua/plugins/{ => custom}/incline.lua | 0 4 files changed, 1 insertion(+) rename lua/plugins/{ => custom}/betterTerm.lua (100%) rename lua/plugins/{ => custom}/bullets.lua (100%) rename lua/plugins/{ => custom}/incline.lua (100%) diff --git a/lua/lazy_setup.lua b/lua/lazy_setup.lua index d492b37..bbdf06d 100644 --- a/lua/lazy_setup.lua +++ b/lua/lazy_setup.lua @@ -13,6 +13,7 @@ require("lazy").setup({ }, { import = "community" }, { import = "plugins" }, + { import = "plugins.custom" }, } --[[@as LazySpec]], { -- Configure any other `lazy.nvim` configuration options here install = { colorscheme = { "astrotheme", "habamax" } }, diff --git a/lua/plugins/betterTerm.lua b/lua/plugins/custom/betterTerm.lua similarity index 100% rename from lua/plugins/betterTerm.lua rename to lua/plugins/custom/betterTerm.lua diff --git a/lua/plugins/bullets.lua b/lua/plugins/custom/bullets.lua similarity index 100% rename from lua/plugins/bullets.lua rename to lua/plugins/custom/bullets.lua diff --git a/lua/plugins/incline.lua b/lua/plugins/custom/incline.lua similarity index 100% rename from lua/plugins/incline.lua rename to lua/plugins/custom/incline.lua