summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/catppuccin.lua
blob: aa00b3f6b99756e96eb163a3745b318e098a71b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
return {
  {
    "catppuccin/nvim",
    name = "catppuccin",
    priority = 1000,
    config = function()
      require("catppuccin").setup({
        flavour = "macchiato",
        integrations = {
          leap = true,
          neogit = true,
          notify = true,
          neotest = true,
          which_key = true,
          fidget = true,
        },
      })
      vim.cmd.colorscheme("catppuccin")
    end,
  },
}