Awesome
This colorscheme is now built-in to nvim-higlhite
! Use that instead.
Introduction
nvim-soluarized
is a colorscheme based on vim-solarized8
and written with nvim-highlite
. It supports both light and dark backgrounds. See usage for more.
Preview
Prerequisites
- Neovim 0.7+
Installation
- Install a plugin manager such as
packer.nvim
and use it to "plug" this repository.use 'Iron-E/nvim-soluarized'
- Specify this colorscheme as your default colorscheme in the
init.vim
:
Or in" Enable 24-bit color output. Only do this IF your environment supports it. " This plugin is fully compatible with 8-bit, 16-bit, and 24-bit colors. set termguicolors set bg=dark " or 'light' colorscheme soluarized
init.lua
:vim.opt.termguicolors = true vim.opt.bg = 'dark' -- or 'light' vim.api.nvim_command 'colorscheme soluarized'
Creating Your Own
- Fork this repository, or clone it with
git clone https://github.com/Iron-E/nvim-soluarized
. - Follow the instructions in
colors/soluarized.vim
.- If you are on a Unix system, use the setup script like so:
Wherechmod +x ./setup.sh ./setup.sh soluarized <colorscheme>
<colorscheme>
is the name of your desired colorscheme.- If you are on Windows, rename the files manually.
See the main repo for more usage tips.