Skip to content

Neovim theme loosely based on the jellybeans theme. Exclusively written in lua

License

Notifications You must be signed in to change notification settings

gremble0/yellowbeans.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yellowbeans.nvim

Visual Telescope

Description

This is a dependencyless neovim theme initially inspired by jellybeans, but which has become quite different. The theme is written in lua and includes highlight groups for many different nvim plugins such as: TreeSitter, Telescope, nvim-cmp, nvim-notify, and more.

Installation

Install it using your favorite nvim package manager, This is how to do it with lazy

{
  "gremble0/yellowbeans.nvim",
  priority = 1000, -- Theme should load before most other plugins
  config = function()
    vim.cmd.colorscheme("yellowbeans")
  end,
}

Usage

After installing it the theme is available as a colorscheme inside neovim.

" Vimscript
colorscheme yellowbeans
-- Lua
vim.cmd.colorscheme("yellowbeans")

Lualine

Yellowbeans also comes with two lualine themes that you can require() in your lualine config:

lualine.themes.yellowbeans

Yellowbeans lualine

lualine.themes.yellowbeans-monochrome

Yellowbeans lualine monochrome

You can use them like so:

lualine.setup({
  options = {
    theme = require("lualine.themes.yellowbeans"), -- OR: "lualine.themes.yellowbeans-monochrome"
  },
})

About

Neovim theme loosely based on the jellybeans theme. Exclusively written in lua

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages