A monochrome Neovim colorscheme with subtle accents, inspired by lackluster.nvim. Monotone with branching highlighter.
- Monochrome base with intentional color accents
- Treesitter and LSP semantic token support
- Plugin support: Telescope, nvim-tree, nvim-cmp, gitsigns
- Soft on the eyes, easy to read
| Syntax Element | Color |
|---|---|
Branching (if, else, switch, for, while) |
#789978 |
| Return keyword | #7788AA |
Directives (#include, @decorator) |
#7A7A7A |
| Strings | #708090 |
| Function definitions | #deeeed |
{
"yourusername/veem.nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd.colorscheme("veem")
end,
}use {
"yourusername/veem.nvim",
config = function()
vim.cmd.colorscheme("veem")
end,
}Clone to your Neovim packages directory:
git clone https://github.com/yourusername/veem.nvim \
~/.local/share/nvim/site/pack/plugins/start/veem.nvimThen add to your config:
vim.cmd.colorscheme("veem")-- Optional: enable transparent background
require("veem").setup({
transparent = true,
})
vim.cmd.colorscheme("veem")MIT