back on fedora, so switched to adwaita.nvim

This commit is contained in:
William Ball 2024-09-02 21:54:16 -07:00
parent c10241632e
commit 603b2c92d8

View file

@ -1,4 +1,14 @@
return { return {
{
"Mofiqul/adwaita.nvim",
lazy = false,
priority = 1000,
config = function()
vim.g.adwaita_transparent = true
vim.cmd([[colorscheme adwaita]])
end
},
{
"catppuccin/nvim", "catppuccin/nvim",
name = "catppuccin", name = "catppuccin",
priority = 1000, priority = 1000,
@ -7,6 +17,6 @@ return {
transparent_background = true, transparent_background = true,
term_colors = true term_colors = true
}) })
vim.cmd.colorscheme("catppuccin")
end end
} }
}