Change Neovim theme

This commit is contained in:
Fabio Scotto di Santolo
2024-07-24 16:06:36 +02:00
parent c05c4fcc8f
commit bf056b70c0

View File

@@ -1,9 +1,14 @@
return {
"catppuccin/nvim",
name = "catppuccin",
"Mofiqul/adwaita.nvim",
name = "adwaita",
lazy = false,
priority = 1000,
---@class CatppuccinOptions
opts = {
transparent_background = false,
},
-- configure and set on startup
config = function()
vim.g.adwaita_darker = false
vim.g.adwaita_disable_cursorline = true
vim.g.adwaita_transparent = false
vim.cmd("colorscheme adwaita")
end,
}