summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/catppuccin.lua
blob: 39f5f2baed9f1daed15a0bf31874980958313f5f (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 = false,
      no_italic = true,
      styles = {
        conditionals = {},
      },
      auto_integrations = true,
    })
  end,
}