Compare commits

...

3 commits

Author SHA1 Message Date
estevesnp
ff483051a4
fix: README vim.pack instructions (#385) 2026-05-15 10:21:53 -05:00
Ercüment
6a961effd6
Add vim.pack installation snippet to README (#384) 2026-04-29 18:21:58 -05:00
Patrick Haun
9504524e5e
feat: add missing highlights (#383) 2026-04-09 09:52:40 -05:00
2 changed files with 16 additions and 0 deletions

View file

@ -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

View file

@ -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 },