Add three options for neovim themes

This commit is contained in:
David Heinemeier Hansson 2024-05-30 16:46:05 -07:00
parent e00f173c46
commit 6c1c4b0d69
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,8 @@
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin",
},
},
}

12
themes/neovim/gruvbox.lua Normal file
View File

@ -0,0 +1,12 @@
return {
-- add gruvbox
{ "ellisonleao/gruvbox.nvim" },
-- Configure LazyVim to load gruvbox
{
"LazyVim/LazyVim",
opts = {
colorscheme = "gruvbox",
},
},
}

View File

@ -0,0 +1,8 @@
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "tokyonight",
},
},
}