From ba97446309dd98ed6d35dde89020bec13267b7e5 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sun, 11 Jun 2023 18:26:30 -0400 Subject: [PATCH] trying to install catpuccin --- .../config/lazyvim/lua/plugins/core.lua | 29 +++++++++++++------ 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua index 325ce61..df7e7ed 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua @@ -1,15 +1,26 @@ return { + -- { + -- "projekt0n/github-nvim-theme", + -- lazy = false, -- make sure we load this during startup if it is your main colorscheme + -- priority = 1000, -- make sure to load this before all the other start plugins + -- config = function() + -- require("github-theme").setup({ + -- options = { + -- transparent = true, + -- }, + -- }) + -- vim.cmd("colorscheme github_dark_high_contrast") + -- end, + -- }, + { - "projekt0n/github-nvim-theme", - lazy = false, -- make sure we load this during startup if it is your main colorscheme - priority = 1000, -- make sure to load this before all the other start plugins + "catppuccin/nvim", + name = "catppuccin", + lazy = false, + priority = 1000, config = function() - require("github-theme").setup({ - options = { - transparent = true, - }, - }) - vim.cmd("colorscheme github_dark_high_contrast") + require("catppuccin").setup({}) + vim.cmd("colorscheme catppuccin-mocha") end, },