summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/catppuccin.lua
blob: 09621c64fda563c3c85366c56ee1e3e068c38d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
return {
  'catppuccin/nvim', 
  name = "catppuccin",
  config = function ()
    require('catppuccin').setup({
      flavor = 'auto',
      background = {
        light = 'latte',
        dark = 'mocha',
      },
      transparent_background = true,
      no_italic = true,
      styles = {
        conditionals = {},
      },
      auto_integrations = true,
    })
  end,
}