fix: add lazy.nvim instructions

This commit is contained in:
Michael Chris Lopez
2024-08-24 14:29:19 +02:00
parent 168593f4ad
commit 6c01e4cd3a

View File

@@ -27,15 +27,18 @@ or try the [built-in collection](#usage).
## Installation ## Installation
Example installation using packer: Example installation using lazy.nvim:
```lua ```lua
use { {
"zenbones-theme/zenbones.nvim", "zenbones-theme/zenbones.nvim",
-- Optionally install Lush. Allows for more configuration or extending the colorscheme -- Optionally install Lush. Allows for more configuration or extending the colorscheme
-- If you don't want to install lush, make sure to set g:zenbones_compat = 1 -- If you don't want to install lush, make sure to set g:zenbones_compat = 1
-- In Vim, compat mode is turned on as Lush only works in Neovim. -- In Vim, compat mode is turned on as Lush only works in Neovim.
requires = "rktjmp/lush.nvim" dependencies = "rktjmp/lush.nvim",
lazy = false,
priority = 1000,
opts = {},
} }
``` ```