trying to install catpuccin

This commit is contained in:
Bryan Ramos 2023-06-11 18:26:30 -04:00
parent 9b797cd700
commit ba97446309

View file

@ -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,
},