A dark Neovim colorscheme based on Moonfly, with a focus on monochromatic aesthetics.
- Only tested with neovim.
- Code stucture is now bullsh*t. all highlights are in a single file lmao
- None of the statusline plugin tested.
- Only works quite well with my nvim setup at
psynyde/nvim. All plugins used by me are well supported :D
- Dark background with carefully chosen colors
- Terminal colors support
- Italic support (can be disabled)
- Transparent background support
- Undercurl support
- Customizable options
use 'psynyde/mono'Copy the files to your Neovim configuration directory:
cp -r colors ~/.config/nvim/
cp -r lua ~/.config/nvim/Add the following to your init.lua:
vim.cmd('colorscheme mono')To customize the colorscheme, use the setup function.
Example: (using lazy.nvim)
{
"psynyde/mono",
lazy = false,
priority = 1000,
config = function()
require("mono").setup({
italics = true,
undercurl = true,
transparent = true,
})
vim.cmd.colorscheme("mono")
end,
}| Option | Description | Default |
|---|---|---|
italics |
Use italics for comments, keywords, etc. | true |
terminal_colors |
Use the theme's palette for the terminal UI. | false |
transparent |
Use a transparent background. | false |
undercurl |
Use undercurls for spelling and lint errors. | false |