A Sepia-ish light colorscheme for Vim
Your TERM
variable must report xterm-256color
. Use a true color (termgui) capable terminal.
Proper settings in ~/.vimrc
are also needed.
set background=light
if &term =~ '256color'
if has('termguicolors')
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
set termguicolors
colorscheme notepad
endif
endif
Plug 'wolandark/NotePad-Vim'
{
"wolandark/NotePad-Vim",
-- optional: activate colorscheme
config = function()
vim.cmd.colorscheme('notepad')
end
},
or use your favorite plugin manager.
Made with the excellent vim-rnb