an attempt was made

This commit is contained in:
2026-04-10 12:15:22 +01:00
parent 761f890b10
commit 624fefdd18
5 changed files with 42 additions and 10 deletions

1
plugins/init.lua Normal file
View File

@@ -0,0 +1 @@
require("plugins.ui.catppuccin")

10
plugins/ui/catppuccin.lua Normal file
View File

@@ -0,0 +1,10 @@
vim.pack.add({ { src = "https://github.com/catppuccin/nvim", name = "catppuccin" } })
require("catppuccin").setup({
transparent_background = true, -- disables setting the background color.
float = {
transparent = true, -- enable transparent floating windows
solid = false, -- use solid styling for floating windows, see |winborder|
},
show_end_of_buffer = true, -- shows the '~' characters after the end of buffers
})