mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Update readme.md (#328)
* Update readme.md Extended description for Structured Setup lazy.nvim * Update readme.md --------- Co-authored-by: mvllow <mvllow@icloud.com>
This commit is contained in:
parent
530b159327
commit
91548dca53
1 changed files with 19 additions and 4 deletions
23
readme.md
23
readme.md
|
|
@ -13,15 +13,30 @@
|
|||
|
||||
## Getting started
|
||||
|
||||
Install `rose-pine/neovim` using your favourite plugin manager:
|
||||
Install `rose-pine/neovim` using your favourite package manager:
|
||||
|
||||
**paq-nvim**
|
||||
### [pam.nvim](https://github.com/mvllow/pam.nvim)
|
||||
|
||||
```lua
|
||||
{ "rose-pine/neovim", as = "rose-pine" }
|
||||
{ source = "rose-pine/neovim", as = "rose-pine" }
|
||||
```
|
||||
|
||||
**lazy.nvim**
|
||||
### [lazy.nvim](https://lazy.folke.io/installation)
|
||||
|
||||
**Structured Setup**
|
||||
|
||||
```lua
|
||||
-- lua/plugins/rose-pine.lua
|
||||
return {
|
||||
"rose-pine/neovim",
|
||||
name = "rose-pine",
|
||||
config = function()
|
||||
vim.cmd("colorscheme rose-pine")
|
||||
end
|
||||
}
|
||||
```
|
||||
|
||||
**Single file**
|
||||
|
||||
```lua
|
||||
{ "rose-pine/neovim", name = "rose-pine" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue