install and set default theme to catppuccin

This commit is contained in:
Nick Burt 2026-02-08 23:05:59 -06:00
parent 6040137c85
commit 40d036454a
1 changed files with 3 additions and 1 deletions

View File

@ -792,6 +792,8 @@ require('lazy').setup({
}, },
}, },
{ 'catppuccin/nvim', name = 'catppuccin', priority = 1000 },
{ -- You can easily change to a different colorscheme. { -- You can easily change to a different colorscheme.
-- Change the name of the colorscheme plugin below, and then -- Change the name of the colorscheme plugin below, and then
-- change the command in the config to whatever the name of that colorscheme is. -- change the command in the config to whatever the name of that colorscheme is.
@ -810,7 +812,7 @@ require('lazy').setup({
-- Load the colorscheme here. -- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load -- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night' vim.cmd.colorscheme 'catppuccin-mocha'
end, end,
}, },