summaryrefslogtreecommitdiff
path: root/nvim/lua/colorscheme.lua
blob: 86e8b4220483684c43ce64608a60ac329cc247cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require("catppuccin").setup({
    flavour = "macchiato",
    background = {
        light = "latte",
        dark = "macchiato",
    },
    custom_highlights = function (colors)
        return {
            CursorLineNr = { fg = colors.flamingo },
        }
    end,
    integrations = {
        cmp = true,
        telescope = true,
    },
})

vim.cmd.colorscheme "catppuccin"