neovim-for-newbs
neovim-for-newbs copied to clipboard
Catppuccin theme integrations
You can activate the catppuccin theme for Mason, NeoTree and many other plugins.
return {
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
config = function()
require("catppuccin").setup({
flavour = "frappe",
transparent_background = false,
integrations = {
mason = true,
neotree = false,
which_key = true,
}
})
vim.cmd.colorscheme "catppuccin"
end
}
}