mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Merge branch 'main' into canary
This commit is contained in:
commit
7180324e90
2 changed files with 18 additions and 1 deletions
3
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
3
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
|
|
@ -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({})
|
||||
|
|
|
|||
16
readme.md
16
readme.md
|
|
@ -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
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue