A soothing dark color scheme for neovim.
- Supports neovim versions
0.8
and above. - Terminal colors inside neovim.
- Color themes for various applications and terminal emulators: extras.
- TreeSitter
- LSP Diagnostics
- Lualine
- Git Signs
- Telescope
- WhichKey
- Indent Blankline
- nvim-cmp
- hop.nvim
- nvim-navic
- nvim-notify
- flash.nvim
- nvim-dap-ui
- vim-illuminate
- Neovim >=
0.8.0
Install the theme with your preferred package manager:
Plug 'mellow-theme/mellow.nvim'
use("mellow-theme/mellow.nvim")
-- Lua
vim.cmd([[colorscheme mellow]])
" Vim Script
colorscheme mellow
Configuration needs to be set BEFORE loading the color scheme with
colorscheme mellow
Option | Default | Description |
---|---|---|
mellow_italic_comments |
true |
Make comments italic |
mellow_italic_keywords |
false |
Make keywords italic |
mellow_italic_booleans |
false |
Make booleans italic |
mellow_italic_functions |
false |
Make functions italic |
mellow_italic_variables |
false |
Make variables italic |
mellow_bold_comments |
false |
Make comments bold |
mellow_bold_keywords |
false |
Make keywords bold |
mellow_bold_booleans |
false |
Make booleans bold |
mellow_bold_functions |
false |
Make functions bold |
mellow_bold_variables |
false |
Make variables bold |
mellow_transparent |
false |
Disable background color |
mellow_highlight_overrides |
{} |
Table of overrides to apply |
-- Example config in lua
-- Configure the appearance
vim.g.mellow_italic_functions = true
vim.g.mellow_bold_functions = true
vim.g.mellow_highlight_overrides = {
["NormalNC"] = { link = "Normal" }
}
-- Load the colorscheme
vim.cmd([[colorscheme mellow]])
" Example config in vim script
" Configure the appearance
let g:mellow_italic_functions = 1
let g:mellow_bold_functions = 1
" Load the colorscheme
colorscheme mellow
Color themes for various applications and terminal emulators.
- alacritty -
extras/alacritty/mellow.toml
- bat -
extras/bat/mellow.tmTheme
- kitty -
extras/kitty/mellow.conf
- wezterm -
extras/wezterm/colors/mellow.toml
- iterm2 -
extras/iterm2/mellow.itermcolors
- terminator -
extras/terminator/mellow.config
- foot -
extras/foot/mellow.ini
- warp -
extras/warp/mellow.yaml
- windows-terminal - extras/windows_terminal/mellow.json
- Included in helix since
22.12
.
- Grab it from the marketplace.
- (or) Search within VSCode extension page for "Mellow".
extras/eclipse/mellow.xml
- Included in delta since
23.06
.- Download the config here.
- See https://dandavison.github.io/delta/custom-themes.html for setup instructions.