diff options
| author | Dmitrii Morozov <snoopdesigns@gmail.com> | 2025-10-27 00:57:02 +0100 |
|---|---|---|
| committer | Dmitrii Morozov <snoopdesigns@gmail.com> | 2025-10-27 00:57:02 +0100 |
| commit | fd49329ad98edf56536684799c46bd046dae9add (patch) | |
| tree | f1c99ce3d4ea6b904c726470dd48a74e18f9a35b | |
| parent | 22dd24202052e4153416c5690b3c2a64e09648d0 (diff) | |
Configure colorscheme
| -rw-r--r-- | lua/plugins/catppuccin.lua | 5 | ||||
| -rw-r--r-- | lua/plugins/core.lua | 8 |
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", + } + } +} |
