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")
vim.cmd("colorscheme everforest")
vim.cmd("colorscheme catppuccin")

View file

@ -6,16 +6,27 @@ return {
dependencies = { "nvim-tree/nvim-web-devicons" }
},
-- Theme
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
config = function()
local macchiato = require("catppuccin.palettes").get_palette
end,
},
{
"neanias/everforest-nvim",
version = false,
priority = 1000,
config = function()
require("everforest").setup({
background = "soft",
transparent_background_level = 0,
italics = false,
disable_italic_comments = false,
background = "soft",
transparent_background_level = 0,
italics = false,
disable_italic_comments = false,
})
end,
},