From 79a3a22a3c292793cfa45c8a576b2f7abf0e86bc Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 10 Jun 2023 10:20:34 +0100 Subject: [PATCH] feat: transparency in alacritty and nvim --- after/plugin/colorscheme.lua | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/after/plugin/colorscheme.lua b/after/plugin/colorscheme.lua index ec74134..7aed293 100644 --- a/after/plugin/colorscheme.lua +++ b/after/plugin/colorscheme.lua @@ -3,10 +3,19 @@ if not status_ok then return 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.g.catppuccin_flavour = "mocha" - -vim.cmd([[ colorscheme catppuccin ]]) +vim.cmd.colorscheme "catppuccin"