https://github.com/wolandark/colorschemefromhell-vim
A Hellish Colorscheme For Vim
https://github.com/wolandark/colorschemefromhell-vim
rnb vim vim-colorscheme vim-colorscheme-dark
Last synced: 7 months ago
JSON representation
A Hellish Colorscheme For Vim
- Host: GitHub
- URL: https://github.com/wolandark/colorschemefromhell-vim
- Owner: wolandark
- Created: 2024-02-28T05:06:17.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-12T00:00:45.000Z (over 2 years ago)
- Last Synced: 2024-12-28T22:16:31.279Z (over 1 year ago)
- Topics: rnb, vim, vim-colorscheme, vim-colorscheme-dark
- Language: HTML
- Homepage:
- Size: 29.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ColorschemeFromHell
A Hellish Colorscheme For Vim
### 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=dark
if &term =~ '256color'
if has('termguicolors')
let &t_8f = "\[38;2;%lu;%lu;%lum"
let &t_8b = "\[48;2;%lu;%lu;%lum"
set termguicolors
colorscheme colorschemefromhell
endif
endif
```
### Installation
#### Vim Plug
```
Plug 'wolandark/ColorschemeFromHell-Vim'
```
#### Lazy
``` lua
{
"wolandark/ColorschemeFromHell-Vim",
-- optional: activate colorscheme
config = function()
vim.cmd.colorscheme('colorschemefromhell')
end
},
```
or use your favorite plugin manager.
### PR & issues are welcomed
Made with the excellent [vim-rnb](https://github.com/romainl/vim-rnb)