Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.1 KB

Readme.md

File metadata and controls

40 lines (28 loc) · 1.1 KB

Squirrelsong Light Theme for Vim

Also works in: Neovim.

Squirrelsong Light theme for Neovim/Vim

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'.