mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
add detailed installation instructions
parent
2061ef34dd
commit
8ac2ce196d
1 changed files with 32 additions and 0 deletions
32
Home.md
32
Home.md
|
|
@ -1,3 +1,35 @@
|
||||||
|
## Install
|
||||||
|
|
||||||
|
**[Paq](https://github.com/savq/paq-nvim)**
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require('paq')({
|
||||||
|
{ 'rose-pine/neovim', as = 'rose-pine' }
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.cmd('colorscheme rose-pine')
|
||||||
|
```
|
||||||
|
|
||||||
|
**[lazy.nvim](https://github.com/folke/lazy.nvim)**
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require("lazy").setup({
|
||||||
|
{ 'rose-pine/neovim', name = 'rose-pine' }
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.cmd('colorscheme rose-pine')
|
||||||
|
```
|
||||||
|
|
||||||
|
**[packer.nvim](https://github.com/wbthomason/packer.nvim)**
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require('packer').startup(function(use)
|
||||||
|
use({ 'rose-pine/neovim', as = 'rose-pine' })
|
||||||
|
end)
|
||||||
|
|
||||||
|
vim.cmd('colorscheme rose-pine')
|
||||||
|
```
|
||||||
|
|
||||||
## Supported plugins
|
## Supported plugins
|
||||||
|
|
||||||
- _**[barbar.nvim](https://github.com/romgrk/barbar.nvim)**_
|
- _**[barbar.nvim](https://github.com/romgrk/barbar.nvim)**_
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue