Skip to content

Commit

Permalink
docs: update installation (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvllow authored Jul 28, 2023
1 parent e103407 commit d93b6a6
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,31 @@
</a>
</p>

## Usage
## Install

> With [lazy.nvim](https://github.com/folke/lazy.nvim)
**[Paq](https://github.com/savq/paq-nvim)**

```lua
require("lazy").setup({
{ 'rose-pine/neovim', name = 'rose-pine' }
require('paq')({
{ 'rose-pine/neovim', as = 'rose-pine' }
})

vim.cmd('colorscheme rose-pine')
```

> With [packer.nvim](https://github.com/wbthomason/packer.nvim)
**[lazy.nvim](https://github.com/folke/lazy.nvim)**

```lua
use({ 'rose-pine/neovim', as = 'rose-pine' })

vim.cmd('colorscheme rose-pine')
require("lazy").setup({
{ 'rose-pine/neovim', name = 'rose-pine' }
})
```

_Supported plugins are listed in the [wiki](https://github.com/rose-pine/neovim/wiki#supported-plugins)_
**[packer.nvim](https://github.com/wbthomason/packer.nvim)**

```lua
require('packer').startup(function(use)
use({ 'rose-pine/neovim', as = 'rose-pine' })
end)
```

## Gallery

Expand Down

0 comments on commit d93b6a6

Please sign in to comment.