From 79d6a52c9c1f15da61bbb3b0df524d145d7ddf36 Mon Sep 17 00:00:00 2001 From: cscherr Date: Thu, 8 May 2025 13:27:52 +0200 Subject: [PATCH] themes --- lua/custom/plugins/themes.lua | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/lua/custom/plugins/themes.lua b/lua/custom/plugins/themes.lua index e474d54..cf6bbb5 100644 --- a/lua/custom/plugins/themes.lua +++ b/lua/custom/plugins/themes.lua @@ -76,6 +76,12 @@ the_themes = { vim.opt.background = "dark" ]], }, + 'catppuccin-frappe', + 'catppuccin-macchiato', + 'catppuccin-mocha', + 'rose-pine-main', + 'rose-pine-moon', + 'cyberdream', -- Light themes { name = '==========Light Themes==========', @@ -97,6 +103,9 @@ the_themes = { vim.opt.background = "light" ]], }, + 'catppuccin-latte', + 'rose-pine-dawn', + 'cyberdream-light', } return { @@ -117,4 +126,26 @@ return { 'folke/tokyonight.nvim', 'rebelot/kanagawa.nvim', { 'zenbones-theme/zenbones.nvim', dependencies = { 'rktjmp/lush.nvim' } }, + { 'catppuccin/nvim', name = 'catppuccin', priority = 1000 }, + { 'rose-pine/neovim', name = 'rose-pine' }, + { + 'scottmckendry/cyberdream.nvim', + setup = function() + require('cyberdream').setup { + -- Enable transparent background + transparent = true, + italic_comments = false, + -- Replace all fillchars with ' ' for the ultimate clean look + hide_fillchars = false, + borderless_pickers = true, + terminal_colors = true, + cache = true, + extensions = { + telescope = true, + notify = true, + mini = true, + }, + } + end, + }, }