From 51f32c51669c25e89f5c5a97c2cc2d0ae91d2105 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sun, 11 Jun 2023 19:22:40 -0400 Subject: [PATCH] back to old theme --- .../neovim/config/lazyvim/lua/config/lazy.lua | 2 +- .../config/lazyvim/lua/plugins/core.lua | 25 ++----------------- 2 files changed, 3 insertions(+), 24 deletions(-) diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/config/lazy.lua b/homeConfig/modules/neovim/config/lazyvim/lua/config/lazy.lua index 055a9d7..6b196b1 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/config/lazy.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/config/lazy.lua @@ -24,7 +24,7 @@ require("lazy").setup({ version = false, -- always use the latest git commit -- version = "*", -- try installing the latest stable version for plugins that support semver }, - install = { colorscheme = { "catppuccin" } }, + install = { colorscheme = { "github-theme" } }, checker = { enabled = true }, -- automatically check for plugin updates performance = { rtp = { diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua index ad9aaab..a4e48a7 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua @@ -1,8 +1,8 @@ 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 + lazy = false, + priority = 1000, config = function() require("github-theme").setup({ options = { @@ -13,27 +13,6 @@ return { end, }, - -- { - -- "catppuccin/nvim", - -- name = "catppuccin", - -- lazy = false, - -- priority = 1000, - -- config = function() - -- require("catppuccin").setup({ - -- opts = { - -- color_overrides = { - -- mocha = { - -- base = "#000000", - -- mantle = "#000000", - -- crust = "#000000", - -- }, - -- }, - -- }, - -- }) - -- vim.cmd("colorscheme catppuccin-mocha") - -- end, - -- }, - { "VonHeikemen/lsp-zero.nvim", branch = "v2.x",