From d0b89666bc194ce4d621a39ba2e5906863b0f659 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Mon, 15 Jul 2024 19:45:39 +0200 Subject: [PATCH] Add: LazyVim colorschemes config --- Configs/nvim/lua/plugins/colorschemes.lua | 87 +++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 Configs/nvim/lua/plugins/colorschemes.lua diff --git a/Configs/nvim/lua/plugins/colorschemes.lua b/Configs/nvim/lua/plugins/colorschemes.lua new file mode 100644 index 0000000..21dd79f --- /dev/null +++ b/Configs/nvim/lua/plugins/colorschemes.lua @@ -0,0 +1,87 @@ +return { + { + "LazyVim/LazyVim", + opts = { + colorscheme = "catppuccin", + }, + }, + + { + "catppuccin/nvim", + lazy = false, + name = "catppuccin", + priority = 1000, + opts = { + flavour = "mocha", + integrations = { + aerial = true, + alpha = true, + cmp = true, + dashboard = true, + flash = true, + gitsigns = true, + headlines = true, + illuminate = true, + indent_blankline = { enabled = true }, + leap = true, + lsp_trouble = true, + mason = true, + markdown = true, + mini = true, + native_lsp = { + enabled = true, + underlines = { + errors = { "undercurl" }, + hints = { "undercurl" }, + warnings = { "undercurl" }, + information = { "undercurl" }, + }, + }, + navic = { + enabled = true, + custom_bg = "lualine", + }, + neogit = true, + neotest = true, + neotree = true, + noice = true, + notify = true, + semantic_tokens = true, + telescope = true, + treesitter = true, + treesitter_context = true, + which_key = true, + }, + color_overrides = { + mocha = { + rosewater = "#efc9c2", + flamingo = "#ebb2b2", + pink = "#f2a7de", + mauve = "#b889f4", + red = "#ea7183", + maroon = "#ea838c", + peach = "#f39967", + yellow = "#eaca89", + green = "#96d382", + teal = "#78cec1", + sky = "#91d7e3", + sapphire = "#68bae0", + blue = "#739df2", + lavender = "#a0a8f6", + text = "#b5c1f1", + subtext1 = "#a6b0d8", + subtext0 = "#959ec2", + overlay2 = "#848cad", + overlay1 = "#717997", + overlay0 = "#63677f", + surface2 = "#505469", + surface1 = "#3e4255", + surface0 = "#2c2f40", + base = "#1a1c2a", + mantle = "#141620", + crust = "#0e0f16", + }, + }, + }, + }, +}