Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wolandark/mono-vim
A somber monochromatic colorscheme with almost no syntax highlights
https://github.com/wolandark/mono-vim
monochrome rnb vim vim-colorscheme
Last synced: 13 days ago
JSON representation
A somber monochromatic colorscheme with almost no syntax highlights
- Host: GitHub
- URL: https://github.com/wolandark/mono-vim
- Owner: wolandark
- Created: 2024-06-24T05:19:13.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-24T05:35:01.000Z (7 months ago)
- Last Synced: 2024-11-07T17:06:41.898Z (2 months ago)
- Topics: monochrome, rnb, vim, vim-colorscheme
- Language: Vim Script
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mono-Vim
A somber monochromatic colorscheme with almost no syntax highlights
### Setup
Your `TERM` variable must report `xterm-256color`. Use a true color (termgui) capable terminal.
Proper settings in `~/.vimrc` are also needed.``` vim
set background=darkif &term =~ '256color'
if has('termguicolors')
let &t_8f = "\[38;2;%lu;%lu;%lum"
let &t_8b = "\[48;2;%lu;%lu;%lum"
set termguicolors
colorscheme mono
endif
endif
```### Installation
#### Plug
``` lua
Plug 'wolandark/Mono-Vim'
```
#### Lazy
``` lua
{
"wolandark/Mono-Vim",
-- optional: activate colorscheme
config = function()
vim.cmd.colorscheme('mono')
end
},```
or use your favorite plugin manager.### PR & issues are welcomed
Made with the excellent [vim-rnb](https://github.com/romainl/vim-rnb)