feat: transparency in alacritty and nvim
This commit is contained in:
parent
90fbd90a33
commit
79a3a22a3c
1 changed files with 15 additions and 6 deletions
|
@ -3,10 +3,19 @@ if not status_ok then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
catppuccin.setup {}
|
catppuccin.setup({
|
||||||
|
flavour = "macchiato",
|
||||||
|
integrations = {
|
||||||
|
cmp = true,
|
||||||
|
gitsigns = true,
|
||||||
|
native_lsp = {
|
||||||
|
enabled = true;
|
||||||
|
},
|
||||||
|
telescope = true,
|
||||||
|
treesitter = true,
|
||||||
|
},
|
||||||
|
term_colors = true,
|
||||||
|
transparent_background = true,
|
||||||
|
})
|
||||||
|
|
||||||
vim.opt.termguicolors = true
|
vim.cmd.colorscheme "catppuccin"
|
||||||
|
|
||||||
vim.g.catppuccin_flavour = "mocha"
|
|
||||||
|
|
||||||
vim.cmd([[ colorscheme catppuccin ]])
|
|
||||||
|
|
Reference in a new issue