diff --git a/lua/custom/colortheme.lua b/lua/custom/colortheme.lua index ebdc900..2da480b 100644 --- a/lua/custom/colortheme.lua +++ b/lua/custom/colortheme.lua @@ -18,8 +18,9 @@ end -- use ayu theme for dark mode, selenized for light mode if background_mode == 'dark' then vim.g.ayucolor = background_mode + vim.cmd("set background=" .. background_mode) vim.cmd("colorscheme catppuccin-mocha") else - vim.cmd("colorscheme catppuccin-latte") + vim.cmd("colorscheme zenburned") vim.cmd("set background=" .. background_mode) end diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 4266eaa..58d9a47 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -161,4 +161,18 @@ return { -- dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" }, -- opts = {} -- }, + { + "zenbones-theme/zenbones.nvim", + -- Optionally install Lush. Allows for more configuration or extending the colorscheme + -- If you don't want to install lush, make sure to set g:zenbones_compat = 1 + -- In Vim, compat mode is turned on as Lush only works in Neovim. + dependencies = "rktjmp/lush.nvim", + lazy = false, + priority = 1000, + -- you can set set configuration options here + -- config = function() + -- vim.g.zenbones_darken_comments = 45 + -- vim.cmd.colorscheme('zenbones') + -- end + } }