From 80e3241a66d230cb71530b822af8c2caf5743152 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Mon, 8 Jul 2024 11:12:19 +0200 Subject: [PATCH] add more themes --- lua/custom/plugins/themes.lua | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/lua/custom/plugins/themes.lua b/lua/custom/plugins/themes.lua index 6657993..cf05db3 100644 --- a/lua/custom/plugins/themes.lua +++ b/lua/custom/plugins/themes.lua @@ -65,6 +65,30 @@ return { name = 'kanagawa-wave', colorscheme = 'kanagawa-wave', }, + { + name = 'zenbones', + colorscheme = 'zenbones', + before = [[ + -- It's a major hack from the themery guys that this is a string + vim.opt.background = "dark" + ]], + }, + { + name = 'tokyobones', + colorscheme = 'tokyobones', + before = [[ + -- It's a major hack from the themery guys that this is a string + vim.opt.background = "dark" + ]], + }, + { + name = 'kanagawabones', + colorscheme = 'kanagawabones', + before = [[ + -- It's a major hack from the themery guys that this is a string + vim.opt.background = "dark" + ]], + }, -- Light themes { name = '==========Light Themes==========', @@ -78,6 +102,14 @@ return { name = 'kanagawa-lotus', colorscheme = 'kanagawa-lotus', }, + { + name = 'zenbones', + colorscheme = 'zenbones', + before = [[ + -- It's a major hack from the themery guys that this is a string + vim.opt.background = "light" + ]], + }, }, themeConfigFile = '~/.config/nvim/lua/settings/theme.lua', livePreview = true, -- Apply theme while browsing. Default to true. @@ -86,4 +118,5 @@ return { }, 'folke/tokyonight.nvim', 'rebelot/kanagawa.nvim', + { 'zenbones-theme/zenbones.nvim', dependencies = { 'rktjmp/lush.nvim' } }, }