Skip to content

Commit

Permalink
add lualine setup and supported plugins
Browse files Browse the repository at this point in the history
closes #5
  • Loading branch information
fvrests committed Aug 14, 2021
1 parent b70cd3d commit cd9c619
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,52 @@
</a>
</p>

## Usage
## Install

1. Install via your preferred package manager
Install via your preferred package manager

```lua
-- Packer
use({ 'rose-pine/neovim', as = 'rose-pine' })
```

2. Require or set `rose-pine` colorscheme
## Usage

Enable `rose-pine` colorscheme

```lua
-- Lua
require('rose-pine').set()
vim.cmd('colorscheme rose-pine')
```

```vim
" Vimscript
colorscheme rose-pine
```

Enable [lualine](https://github.com/hoob3rt/lualine.nvim) plugin

```lua
-- Lua
require('lualine').setup({
options = {
theme = 'rose-pine'
}
})
```

## Plugin Support

- [Treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
- [LSP diagnostics](https://neovim.io/doc/user/lsp.html)
- [Barbar](https://github.com/romgrk/barbar.nvim)
- [Gitsigns](https://github.com/lewis6991/gitsigns.nvim)
- [Modes](https://github.com/mvllow/modes.nvim)
- [NvimTree](https://github.com/kyazdani42/nvim-tree.lua)
- [WhichKey](https://github.com/folke/which-key.nvim)
- [Todo Comments](https://github.com/folke/todo-comments.nvim)
- [Lualine](https://github.com/hoob3rt/lualine.nvim)

## Gallery

**Rosé Pine**
Expand Down

0 comments on commit cd9c619

Please sign in to comment.