switch back to adwaita

This commit is contained in:
William Ball 2025-04-17 10:20:44 -07:00
parent e78d45d5bb
commit afee190bd2
Signed by: wball
GPG key ID: B8682D8137B70765

View file

@ -1,13 +1,25 @@
return {
-- {
-- 'catppuccin/nvim',
-- name = 'catppuccin',
-- priority = 1000,
-- config = function()
-- require('catppuccin').setup({
-- transparent_background = true,
-- })
-- vim.cmd.colorscheme([[catppuccin-mocha]])
-- end
-- }
{
'catppuccin/nvim',
name = 'catppuccin',
"Mofiqul/adwaita.nvim",
lazy = false,
priority = 1000,
-- configure and set on startup
config = function()
require('catppuccin').setup({
transparent_background = true,
})
vim.cmd.colorscheme([[catppuccin-mocha]])
-- vim.g.adwaita_darker = true -- for darker version
-- vim.g.adwaita_disable_cursorline = true -- to disable cursorline
vim.g.adwaita_transparent = true -- makes the background transparent
vim.cmd('colorscheme adwaita')
end
}
}
}}