mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
docs: update installation (#178)
This commit is contained in:
parent
70c641a0b7
commit
bca840fc90
1 changed files with 15 additions and 11 deletions
28
readme.md
28
readme.md
|
|
@ -11,27 +11,31 @@
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
## Usage
|
## Install
|
||||||
|
|
||||||
> With [lazy.nvim](https://github.com/folke/lazy.nvim)
|
**[Paq](https://github.com/savq/paq-nvim)**
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require('paq')({
|
||||||
|
{ 'rose-pine/neovim', as = 'rose-pine' }
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
**[lazy.nvim](https://github.com/folke/lazy.nvim)**
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
{ 'rose-pine/neovim', name = 'rose-pine' }
|
{ 'rose-pine/neovim', name = 'rose-pine' }
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.cmd('colorscheme rose-pine')
|
|
||||||
```
|
```
|
||||||
|
|
||||||
> With [packer.nvim](https://github.com/wbthomason/packer.nvim)
|
**[packer.nvim](https://github.com/wbthomason/packer.nvim)**
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
use({ 'rose-pine/neovim', as = 'rose-pine' })
|
require('packer').startup(function(use)
|
||||||
|
use({ 'rose-pine/neovim', as = 'rose-pine' })
|
||||||
vim.cmd('colorscheme rose-pine')
|
end)
|
||||||
```
|
```∞
|
||||||
|
|
||||||
_Supported plugins are listed in the [wiki](https://github.com/rose-pine/neovim/wiki#supported-plugins)_
|
|
||||||
|
|
||||||
## Gallery
|
## Gallery
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue