diff options
Diffstat (limited to 'nvim/lua/colorscheme.lua')
| -rw-r--r-- | nvim/lua/colorscheme.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/nvim/lua/colorscheme.lua b/nvim/lua/colorscheme.lua new file mode 100644 index 0000000..86e8b42 --- /dev/null +++ b/nvim/lua/colorscheme.lua @@ -0,0 +1,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" |