back to old theme

This commit is contained in:
Bryan Ramos 2023-06-11 19:22:40 -04:00
parent 3e3b2536eb
commit 51f32c5166
2 changed files with 3 additions and 24 deletions

View file

@ -24,7 +24,7 @@ require("lazy").setup({
version = false, -- always use the latest git commit version = false, -- always use the latest git commit
-- version = "*", -- try installing the latest stable version for plugins that support semver -- 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 checker = { enabled = true }, -- automatically check for plugin updates
performance = { performance = {
rtp = { rtp = {

View file

@ -1,8 +1,8 @@
return { return {
{ {
"projekt0n/github-nvim-theme", "projekt0n/github-nvim-theme",
lazy = false, -- make sure we load this during startup if it is your main colorscheme lazy = false,
priority = 1000, -- make sure to load this before all the other start plugins priority = 1000,
config = function() config = function()
require("github-theme").setup({ require("github-theme").setup({
options = { options = {
@ -13,27 +13,6 @@ return {
end, 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", "VonHeikemen/lsp-zero.nvim",
branch = "v2.x", branch = "v2.x",