summaryrefslogtreecommitdiff
path: root/lua/plugins/core/theme.lua
blob: 9ba1376d65220aa4e92d25ebd769f5612bce7b4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
return {
   {
      "catppuccin/nvim",
      enabled = true,
      lazy = false,
      priority = 1000,
      name = "catppuccin",
      config = function()
         require("catppuccin").setup({ flavour = "frappe" })
         vim.api.nvim_command("colorscheme catppuccin")
      end,
   }
}