feat: neovim - transparent backgroud

This commit is contained in:
Ryan Yin
2024-01-06 22:47:25 +08:00
parent b82353b513
commit 36c56b7d8d

View File

@@ -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",