From 1eaf79eb63d8ae53ed9cbb425a912c7b840ffd4d Mon Sep 17 00:00:00 2001 From: Mohamed Rashid Date: Fri, 31 Jan 2025 23:38:47 +0530 Subject: [PATCH] Add installation instruction for lazy.nvim --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 4450830..7428c75 100644 --- a/README.md +++ b/README.md @@ -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`.