From 16b4fd2fe29e8d92366da38d8ea44183f270907d Mon Sep 17 00:00:00 2001 From: GillesMarkvoort <92788320+GillesMarkvoort@users.noreply.github.com> Date: Thu, 20 Mar 2025 10:34:34 +0100 Subject: [PATCH] Update init.lua --- init.lua | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/init.lua b/init.lua index 1581e00f..511c8a69 100644 --- a/init.lua +++ b/init.lua @@ -896,18 +896,14 @@ require('lazy').setup({ -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. 'catppuccin/nvim', priority = 1000, -- Make sure to load this before all the other start plugins. - config = function() - ---@diagnostic disable-next-line: missing-fields - require('catppuccin').setup { - styles = { - comments = { italic = false }, -- Disable italics in comments - }, - } - + init = function() -- 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 'catppuccin' + + -- You can configure highlights by doing something like: + -- vim.cmd.hi 'Comment gui=none' end, },