summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/plugins/catppuccin.lua5
-rw-r--r--lua/plugins/core.lua8
2 files changed, 13 insertions, 0 deletions
diff --git a/lua/plugins/catppuccin.lua b/lua/plugins/catppuccin.lua
new file mode 100644
index 0000000..126d149
--- /dev/null
+++ b/lua/plugins/catppuccin.lua
@@ -0,0 +1,5 @@
+return {
+ "catppuccin/nvim",
+ name = "catppuccin",
+ priority = 1000,
+}
diff --git a/lua/plugins/core.lua b/lua/plugins/core.lua
new file mode 100644
index 0000000..d336162
--- /dev/null
+++ b/lua/plugins/core.lua
@@ -0,0 +1,8 @@
+return {
+ {
+ "LazyVim/LazyVim",
+ opts = {
+ colorscheme = "catppuccin-macchiato",
+ }
+ }
+}