From a16923908ad2083fe5dae53342d1d7bd45e83e84 Mon Sep 17 00:00:00 2001 From: Eric Olerud Date: Fri, 19 Apr 2024 01:30:51 -0400 Subject: [PATCH] set colorscheme to catpuccin-mocha --- init.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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'