diff --git a/home/base/desktop/editors/neovim/astronvim_user/init.lua b/home/base/desktop/editors/neovim/astronvim_user/init.lua index f2c94df0..c44844d4 100644 --- a/home/base/desktop/editors/neovim/astronvim_user/init.lua +++ b/home/base/desktop/editors/neovim/astronvim_user/init.lua @@ -66,6 +66,15 @@ return { { import = "astrocommunity.pack.docker" }, { import = "astrocommunity.pack.helm" }, + -- colorscheme + { + "catppuccin/nvim", + name = "catppuccin", + opts = function(_, opts) + opts.flavour = "mocha" -- latte, frappe, macchiato, mocha + opts.transparent_background = false -- disables setting the background color. + end, + }, -- Language Parser for syntax highlighting / indentation / folding / Incremental selection { "nvim-treesitter/nvim-treesitter",