Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ After the installation, configure it as your colorscheme by putting the followin
```vim
colorscheme NeoSolarized
```
- Plugin managers: [lazy.nvim](https://github.com/LazyVim/LazyVim):

- Add the file `plugins/NeoSolarized.lua` with content `return { 'overcache/NeoSolarized' }`.
- Add to your `init.lua`:
```vim
vim.o.background = "light"
vim.cmd([[colorscheme NeoSolarized]])
```
## Options
Some options of the original solarized theme were removed or renamed to avoid config conflicts.
Make sure to put configuration before the line `colorscheme NeoSolarized` in `init.vim` or `.vimrc`.
Expand Down