mirror of
https://github.com/rose-pine/neovim.git
synced 2026-07-17 04:54:34 +02:00
Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ff483051a4 |
||
|
|
6a961effd6 |
||
|
|
9504524e5e |
2 changed files with 16 additions and 0 deletions
13
README.md
13
README.md
|
|
@ -15,6 +15,19 @@
|
|||
|
||||
Install `rose-pine/neovim` using your favourite package manager:
|
||||
|
||||
### [Built-in vim.pack](https://neovim.io/doc/user/pack/#_plugin-manager)
|
||||
|
||||
```lua
|
||||
vim.pack.add({
|
||||
{
|
||||
src = "https://github.com/rose-pine/neovim",
|
||||
name = "rose-pine",
|
||||
},
|
||||
})
|
||||
require("rose-pine").setup()
|
||||
vim.cmd("colorscheme rose-pine")
|
||||
```
|
||||
|
||||
### [pam.nvim](https://github.com/mvllow/pam.nvim)
|
||||
|
||||
```lua
|
||||
|
|
|
|||
|
|
@ -223,6 +223,9 @@ local function set_highlights()
|
|||
Type = { fg = palette.foam },
|
||||
TypeDef = { link = "Type" },
|
||||
Underlined = { fg = palette.iris, underline = true },
|
||||
Added = { fg = groups.git_add },
|
||||
Changed = { fg = groups.git_change },
|
||||
Removed = { fg = groups.git_delete },
|
||||
|
||||
healthError = { fg = groups.error },
|
||||
healthSuccess = { fg = groups.info },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue