From c25f8963ba322ef56524d3cee902ef3f055459d6 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Mon, 29 Jul 2024 01:01:58 +0100 Subject: [PATCH] feat(catppuccin.lua): add new Lua file catppuccin.lua with configuration for catppuccino theme setup --- lua/absolute/after/catppuccin.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lua/absolute/after/catppuccin.lua diff --git a/lua/absolute/after/catppuccin.lua b/lua/absolute/after/catppuccin.lua new file mode 100644 index 0000000..56dbc90 --- /dev/null +++ b/lua/absolute/after/catppuccin.lua @@ -0,0 +1,11 @@ +local theme = require("catppuccino") + +theme.setup({ + flavour = "mocha", + transparent_background = true, + dim_inactive = { + enabled = true, + shade = "dark", + percentage = 0.15, -- percentage of the shade to apply to the inactive window + }, +})