docs: update installation (#178)

This commit is contained in:
not 2023-07-28 23:03:23 +02:00 committed by GitHub
commit bca840fc90

View file

@ -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