From 6c1c4b0d69578066d620190e842de04d22618eea Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 30 May 2024 16:46:05 -0700 Subject: [PATCH] Add three options for neovim themes --- themes/neovim/catppuccin.lua | 8 ++++++++ themes/neovim/gruvbox.lua | 12 ++++++++++++ themes/neovim/tokyo-night.lua | 8 ++++++++ 3 files changed, 28 insertions(+) create mode 100644 themes/neovim/catppuccin.lua create mode 100644 themes/neovim/gruvbox.lua create mode 100644 themes/neovim/tokyo-night.lua 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", + }, + }, +}