From 0fa8b6718e0e81b98fe50a7600cd3da2e0e9083e Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sun, 11 Jun 2023 18:40:16 -0400 Subject: [PATCH] adjusting catppuccin colors --- .../neovim/config/lazyvim/lua/plugins/core.lua | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua index df7e7ed..fddfd81 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua @@ -19,7 +19,17 @@ return { lazy = false, priority = 1000, config = function() - require("catppuccin").setup({}) + require("catppuccin").setup({ + opts = { + color_overrides = { + mocha = { + base = "#000000", + mantle = "#000000", + crust = "#000000", + }, + }, + }, + }) vim.cmd("colorscheme catppuccin-mocha") end, },