Skip to content

devOpifex/veem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

veem.nvim

A monochrome Neovim colorscheme with subtle accents, inspired by lackluster.nvim. Monotone with branching highlighter.

Features

  • 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

Accent Colors

Syntax Element Color
Branching (if, else, switch, for, while) #789978
Return keyword #7788AA
Directives (#include, @decorator) #7A7A7A
Strings #708090
Function definitions #deeeed

Installation

lazy.nvim

{
    "yourusername/veem.nvim",
    lazy = false,
    priority = 1000,
    config = function()
        vim.cmd.colorscheme("veem")
    end,
}

packer.nvim

use {
    "yourusername/veem.nvim",
    config = function()
        vim.cmd.colorscheme("veem")
    end,
}

Manual

Clone to your Neovim packages directory:

git clone https://github.com/yourusername/veem.nvim \
  ~/.local/share/nvim/site/pack/plugins/start/veem.nvim

Then add to your config:

vim.cmd.colorscheme("veem")

Configuration

-- Optional: enable transparent background
require("veem").setup({
    transparent = true,
})
vim.cmd.colorscheme("veem")

Supported Plugins

License

MIT

About

veem color scheme

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages