mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 14:00: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")
|
require("lazy").setup("plugins")
|
||||||
|
|
||||||
vim.cmd("colorscheme everforest")
|
vim.cmd("colorscheme catppuccin")
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue