A port of the jellybeans colorscheme for Neovim, written in Lua.
Note: This colorscheme is very much a work in progress so breaking changes should be expected. If you find any issues, please report them. I don't have a lot of experience with colorschemes so pull requests are welcome.
- Written in Lua
- Treesitter support
- LSP support
- Support for popular plugins
Using lazy.nvim:
{
"wtfox/jellybeans.nvim",
priority = 1000,
config = function()
require("jellybeans").setup()
vim.cmd.colorscheme("jellybeans")
end,
}
- Treesitter
- LSP
- Telescope
- NeoTree
- Lualine
- and more...
The theme includes a Lualine theme. To enable it:
require('lualine').setup {
options = {
theme = 'jellybeans'
}
}