cpow / neovim-for-newbs

a simple lua neovim configuration for newbs
452 stars 81 forks source link

Catppuccin theme integrations #8

Open kjvdven opened 4 months ago

kjvdven commented 4 months ago

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