summaryrefslogtreecommitdiff
path: root/lua/config/plugins/init.lua
blob: c998c4bebd4b5530d217a88095f62fdbd7f0890c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
-- Setup colorscheme

require("lze").load({
  {
    "catppuccin-nvim",
    enabled = nixCats("colorscheme"):find("^catppuccin") ~= nil,
    after = function(_)
      require("catppuccin").setup({
        integrations = {
          -- Enable required integrations
          leap = true,
          treesitter = true,
          telescope = { enabled = true },
          which_key = true,
        },
      })

      vim.cmd.colorscheme(nixCats("colorscheme"))
    end,
  },

  { import = "config.plugins.leap" },
  { import = "config.plugins.telescope" },
  { import = "config.plugins.treesitter" },
  { import = "config.plugins.extra" },
})