From e6879ea1359b09642bb8c20cbd52b48ef806383b Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Tue, 14 May 2024 23:56:59 +0200 Subject: [PATCH] moved themes to themes dir --- lua/config/lazy.lua | 3 ++- lua/{plugins => themes}/astrodark.lua | 0 lua/{plugins => themes}/bamboo.lua | 0 lua/{plugins => themes}/catppuccin.lua | 0 lua/{plugins => themes}/everforest.lua | 0 lua/{plugins => themes}/github-theme.lua | 0 lua/{plugins => themes}/gruvbox-baby.lua | 0 lua/{plugins => themes}/gruvbox.lua | 0 lua/{plugins => themes}/gruvbox_flat.lua | 0 lua/{plugins => themes}/gruvbox_material.lua | 0 lua/{plugins => themes}/kanagawa.lua | 0 lua/{plugins => themes}/material.lua | 0 lua/{plugins => themes}/monokai-pro.lua | 0 13 files changed, 2 insertions(+), 1 deletion(-) rename lua/{plugins => themes}/astrodark.lua (100%) rename lua/{plugins => themes}/bamboo.lua (100%) rename lua/{plugins => themes}/catppuccin.lua (100%) rename lua/{plugins => themes}/everforest.lua (100%) rename lua/{plugins => themes}/github-theme.lua (100%) rename lua/{plugins => themes}/gruvbox-baby.lua (100%) rename lua/{plugins => themes}/gruvbox.lua (100%) rename lua/{plugins => themes}/gruvbox_flat.lua (100%) rename lua/{plugins => themes}/gruvbox_material.lua (100%) rename lua/{plugins => themes}/kanagawa.lua (100%) rename lua/{plugins => themes}/material.lua (100%) rename lua/{plugins => themes}/monokai-pro.lua (100%) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index a554b06..ffca987 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -16,7 +16,8 @@ require('lazy').setup({ version = '', }, spec = { - import = 'plugins' + { import = 'plugins' }, + { import = 'themes' } }, change_detection = { -- automatically check for config file changes and reload the ui diff --git a/lua/plugins/astrodark.lua b/lua/themes/astrodark.lua similarity index 100% rename from lua/plugins/astrodark.lua rename to lua/themes/astrodark.lua diff --git a/lua/plugins/bamboo.lua b/lua/themes/bamboo.lua similarity index 100% rename from lua/plugins/bamboo.lua rename to lua/themes/bamboo.lua diff --git a/lua/plugins/catppuccin.lua b/lua/themes/catppuccin.lua similarity index 100% rename from lua/plugins/catppuccin.lua rename to lua/themes/catppuccin.lua diff --git a/lua/plugins/everforest.lua b/lua/themes/everforest.lua similarity index 100% rename from lua/plugins/everforest.lua rename to lua/themes/everforest.lua diff --git a/lua/plugins/github-theme.lua b/lua/themes/github-theme.lua similarity index 100% rename from lua/plugins/github-theme.lua rename to lua/themes/github-theme.lua diff --git a/lua/plugins/gruvbox-baby.lua b/lua/themes/gruvbox-baby.lua similarity index 100% rename from lua/plugins/gruvbox-baby.lua rename to lua/themes/gruvbox-baby.lua diff --git a/lua/plugins/gruvbox.lua b/lua/themes/gruvbox.lua similarity index 100% rename from lua/plugins/gruvbox.lua rename to lua/themes/gruvbox.lua diff --git a/lua/plugins/gruvbox_flat.lua b/lua/themes/gruvbox_flat.lua similarity index 100% rename from lua/plugins/gruvbox_flat.lua rename to lua/themes/gruvbox_flat.lua diff --git a/lua/plugins/gruvbox_material.lua b/lua/themes/gruvbox_material.lua similarity index 100% rename from lua/plugins/gruvbox_material.lua rename to lua/themes/gruvbox_material.lua diff --git a/lua/plugins/kanagawa.lua b/lua/themes/kanagawa.lua similarity index 100% rename from lua/plugins/kanagawa.lua rename to lua/themes/kanagawa.lua diff --git a/lua/plugins/material.lua b/lua/themes/material.lua similarity index 100% rename from lua/plugins/material.lua rename to lua/themes/material.lua diff --git a/lua/plugins/monokai-pro.lua b/lua/themes/monokai-pro.lua similarity index 100% rename from lua/plugins/monokai-pro.lua rename to lua/themes/monokai-pro.lua