neovim: add catppuccin theme

This commit is contained in:
Andrew Scott 2024-09-14 20:41:57 -04:00
parent 04a96ce714
commit 155d096098
Signed by: a
GPG key ID: 7CD5A5977E4931C1
2 changed files with 16 additions and 6 deletions

View file

@ -20,5 +20,4 @@ vim.opt.rtp:prepend(lazypath)
require("lazy").setup("plugins") require("lazy").setup("plugins")
vim.cmd("colorscheme everforest") vim.cmd("colorscheme catppuccin")

View file

@ -6,6 +6,17 @@ return {
dependencies = { "nvim-tree/nvim-web-devicons" } dependencies = { "nvim-tree/nvim-web-devicons" }
}, },
-- Theme -- Theme
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
config = function()
local macchiato = require("catppuccin.palettes").get_palette
end,
},
{ {
"neanias/everforest-nvim", "neanias/everforest-nvim",
version = false, version = false,