diff --git a/themes/neovim/catppuccin.lua b/themes/neovim/catppuccin.lua new file mode 100644 index 0000000..dbe34f5 --- /dev/null +++ b/themes/neovim/catppuccin.lua @@ -0,0 +1,8 @@ +return { + { + "LazyVim/LazyVim", + opts = { + colorscheme = "catppuccin", + }, + }, +} diff --git a/themes/neovim/gruvbox.lua b/themes/neovim/gruvbox.lua new file mode 100644 index 0000000..8802c53 --- /dev/null +++ b/themes/neovim/gruvbox.lua @@ -0,0 +1,12 @@ +return { + -- add gruvbox + { "ellisonleao/gruvbox.nvim" }, + + -- Configure LazyVim to load gruvbox + { + "LazyVim/LazyVim", + opts = { + colorscheme = "gruvbox", + }, + }, +} diff --git a/themes/neovim/tokyo-night.lua b/themes/neovim/tokyo-night.lua new file mode 100644 index 0000000..dad2d30 --- /dev/null +++ b/themes/neovim/tokyo-night.lua @@ -0,0 +1,8 @@ +return { + { + "LazyVim/LazyVim", + opts = { + colorscheme = "tokyonight", + }, + }, +}