mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-08 13:30:47 -05:00
neovim: add catppuccin theme
This commit is contained in:
parent
04a96ce714
commit
155d096098
2 changed files with 16 additions and 6 deletions
|
@ -20,5 +20,4 @@ vim.opt.rtp:prepend(lazypath)
|
|||
|
||||
require("lazy").setup("plugins")
|
||||
|
||||
vim.cmd("colorscheme everforest")
|
||||
|
||||
vim.cmd("colorscheme catppuccin")
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue