From 64225eb27622db9c4b48ed8c3dd061021c74d3ef Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Tue, 8 Oct 2024 17:45:31 -0500 Subject: [PATCH] Add zenbones --- .config/nvim/lua/plugins/zenbones.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .config/nvim/lua/plugins/zenbones.lua diff --git a/.config/nvim/lua/plugins/zenbones.lua b/.config/nvim/lua/plugins/zenbones.lua new file mode 100644 index 0000000..5e920f8 --- /dev/null +++ b/.config/nvim/lua/plugins/zenbones.lua @@ -0,0 +1,14 @@ +return { + "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 +}