diff --git a/init.lua b/init.lua index 4ccc8471..ea719d4d 100644 --- a/init.lua +++ b/init.lua @@ -688,6 +688,12 @@ require('lazy').setup({ end, }, + { -- Install cutpuccin colorscheme + 'catppuccin/nvim', + name = 'cutppuccin', + 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. @@ -699,7 +705,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' + vim.cmd.colorscheme 'catppuccin-mocha' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none'