From 40d036454a069af79666f54880151984fd3dda14 Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Sun, 8 Feb 2026 23:05:59 -0600 Subject: [PATCH] install and set default theme to catppuccin --- init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 5792f8fe..cdee7f6a 100644 --- a/init.lua +++ b/init.lua @@ -792,6 +792,8 @@ require('lazy').setup({ }, }, + { 'catppuccin/nvim', name = 'catppuccin', priority = 1000 }, + { -- You can easily change to a different colorscheme. -- Change the name of the colorscheme plugin below, and then -- 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. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' + vim.cmd.colorscheme 'catppuccin-mocha' end, },