Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wolandark/notepad-vim
A Sepia-ish light colorscheme for Vim
https://github.com/wolandark/notepad-vim
rnb vim vim-colorscheme vim-colorscheme-light
Last synced: 27 days ago
JSON representation
A Sepia-ish light colorscheme for Vim
- Host: GitHub
- URL: https://github.com/wolandark/notepad-vim
- Owner: wolandark
- Created: 2024-02-28T09:05:24.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-03-11T23:53:50.000Z (11 months ago)
- Last Synced: 2024-11-07T17:06:44.081Z (3 months ago)
- Topics: rnb, vim, vim-colorscheme, vim-colorscheme-light
- Language: Vim Script
- Homepage:
- Size: 17.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NotePad-Vim
A Sepia-ish light 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=lightif &term =~ '256color'
if has('termguicolors')
let &t_8f = "\[38;2;%lu;%lu;%lum"
let &t_8b = "\[48;2;%lu;%lu;%lum"
set termguicolors
colorscheme notepad
endif
endif
```### Installation
#### Vim Plug
```
Plug 'wolandark/NotePad-Vim'
```#### Lazy
``` lua
{
"wolandark/NotePad-Vim",
-- optional: activate colorscheme
config = function()
vim.cmd.colorscheme('notepad')
end
},```
or use your favorite plugin manager.
### PR & issues are welcomed
Made with the excellent [vim-rnb](https://github.com/romainl/vim-rnb)