From 99bcf9068c6afeb03a3d65895fc67c4be633d62b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20K=C3=A4nner?= Date: Mon, 30 Dec 2024 19:59:14 +0100 Subject: [PATCH] custom nvim colors --- modules/home/shell/nvim-lua/plugins/user.lua | 47 ++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/modules/home/shell/nvim-lua/plugins/user.lua b/modules/home/shell/nvim-lua/plugins/user.lua index d5dc739..24228c8 100644 --- a/modules/home/shell/nvim-lua/plugins/user.lua +++ b/modules/home/shell/nvim-lua/plugins/user.lua @@ -1,5 +1,52 @@ ---@type LazySpec return { + { + "catppuccin/nvim", + name = "catppuccin", + opts = { + -- configuration options... + flavor = "mocha", + dim_inactive = { + enable = true, + shade = "light", + percentage = 0.15, + }, + color_overrides = { + mocha = { + base = "#26211e", + crust = "#0a0807", + mantle = "#585049", + text = "#e6e2de", + subtext0 = "#c6c2be", + subtext1 = "#a6a29e", + surface0 = "#585049", + surface1 = "#c1b7b0", + surface2 = "#f2f0ef", + + red = "#f75b72", + green = "#67af34", + yellow = "#c98b1a", + blue = "#509af6", + pink = "#ca64f3", + teal = "#1faeae", + + bright_red = "#fb8590", + bright_green = "#75c73b", + bright_yellow = "#e49f27", + bright_blue = "#77b1fb", + bright_pink = "#d68af7", + bright_teal = "#24c6c6", + }, + }, + }, + }, + { + "AstroNvim/astroui", + ---@type AstroUIOpts + opts = { + colorscheme = "catppuccin", + }, + }, { "p00f/clangd_extensions.nvim", optional = true,