Merge branch 'main' of https://github.com/rose-pine/neovim into rose-pine-main

This commit is contained in:
Eric 2023-08-24 12:44:43 -07:00
commit 139cd93be7
14 changed files with 827 additions and 683 deletions

View file

@ -4,3 +4,29 @@
I often make changes to this theme, so if you want to use this theme, make a
fork if you don't want random changes I make.
## Install
**[Paq](https://github.com/savq/paq-nvim)**
```lua
require('paq')({
{ 'NycRat/rose-pine', as = 'rose-pine' }
})
```
**[lazy.nvim](https://github.com/folke/lazy.nvim)**
```lua
require("lazy").setup({
{ 'NycRat/rose-pine', name = 'rose-pine' }
})
```
**[packer.nvim](https://github.com/wbthomason/packer.nvim)**
```lua
require('packer').startup(function(use)
use({ 'NycRat/rose-pine', as = 'rose-pine' })
end)
```