neovim-for-newbs icon indicating copy to clipboard operation
neovim-for-newbs copied to clipboard

Catppuccin theme integrations

Open kjvdven opened this issue 11 months ago • 0 comments

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

kjvdven avatar Mar 04 '24 19:03 kjvdven