Skip to content

Commit 510d3f3

Browse files
authored
Merge pull request #8 from rose-pine/docs-add-supported-plugins
add lualine setup and supported plugins
2 parents b70cd3d + cd9c619 commit 510d3f3

File tree

1 file changed

+29
-4
lines changed

1 file changed

+29
-4
lines changed

Diff for: readme.md

+29-4
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,52 @@
1111
</a>
1212
</p>
1313

14-
## Usage
14+
## Install
1515

16-
1. Install via your preferred package manager
16+
Install via your preferred package manager
1717

1818
```lua
1919
-- Packer
2020
use({ 'rose-pine/neovim', as = 'rose-pine' })
2121
```
2222

23-
2. Require or set `rose-pine` colorscheme
23+
## Usage
24+
25+
Enable `rose-pine` colorscheme
2426

2527
```lua
2628
-- Lua
27-
require('rose-pine').set()
29+
vim.cmd('colorscheme rose-pine')
2830
```
2931

3032
```vim
3133
" Vimscript
3234
colorscheme rose-pine
3335
```
3436

37+
Enable [lualine](https://github.com/hoob3rt/lualine.nvim) plugin
38+
39+
```lua
40+
-- Lua
41+
require('lualine').setup({
42+
options = {
43+
theme = 'rose-pine'
44+
}
45+
})
46+
```
47+
48+
## Plugin Support
49+
50+
- [Treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
51+
- [LSP diagnostics](https://neovim.io/doc/user/lsp.html)
52+
- [Barbar](https://github.com/romgrk/barbar.nvim)
53+
- [Gitsigns](https://github.com/lewis6991/gitsigns.nvim)
54+
- [Modes](https://github.com/mvllow/modes.nvim)
55+
- [NvimTree](https://github.com/kyazdani42/nvim-tree.lua)
56+
- [WhichKey](https://github.com/folke/which-key.nvim)
57+
- [Todo Comments](https://github.com/folke/todo-comments.nvim)
58+
- [Lualine](https://github.com/hoob3rt/lualine.nvim)
59+
3560
## Gallery
3661

3762
**Rosé Pine**

0 commit comments

Comments
 (0)