Also works in: Neovim.

In your Vim configuration, use :colorscheme squirrelsong_light.
Set g:squirrelsong_color_only to v:true beforehand to disable additional styling like italic, bold, etc. This can help on some terminals and fonts that don’t support them that well.
Installation with lazy.nvim
{
"sapegin/squirrelsong",
config = function(plugin)
vim.opt.rtp:append(plugin.dir .. "/themes/Vim")
end,
}Installation with packer.nvim
use { 'sapegin/squirrelsong', rtp = 'themes/Vim' }Installation with vim-plug
call plug#begin()
...
Plug 'sapegin/squirrelsong', { 'rtp': 'themes/Vim' }
...
call plug#end()Installation from GitHub
Put squirrelsong_light.vim in the colors directory somewhere on your 'rtp'. :echo &rtp will print your 'rtp'.