Merge branch 'main' into canary

This commit is contained in:
not 2023-02-20 18:11:15 -06:00 committed by GitHub
commit 7180324e90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 1 deletions

View file

@ -63,7 +63,8 @@ body:
-- Install plugins
local plugins = {
"rose-pine/neovim.nvim",
"rose-pine/neovim",
name = "rose-pine",
config = function()
-- Add relevant Rosé Pine config below
require("rose-pine").setup({})

View file

@ -13,6 +13,21 @@
## Usage
> With [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
'rose-pine/neovim',
name = 'rose-pine',
lazy = false,
priority = 1000,
config = function()
require("rose-pine").setup()
vim.cmd('colorscheme rose-pine')
end
}
```
> With [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua
@ -20,6 +35,7 @@ use({
'rose-pine/neovim',
as = 'rose-pine',
config = function()
require("rose-pine").setup()
vim.cmd('colorscheme rose-pine')
end
})