summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/catppuccin.lua
blob: bddf31a2c086f0c1ea46bcd44f4620c1fb8fbdf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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,
          navic = { enabled = true },
        },
      })
      vim.cmd.colorscheme("catppuccin")
    end,
  },
}