docs: add lualine.nvim theme guide

I had to find this information within a reddit post and I thought it was relevant that the documentation for the theme itself had this available
This commit is contained in:
Wenderson Barros 2023-12-20 22:37:18 -04:00 committed by GitHub
commit ebf0336f5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -117,6 +117,17 @@ require('rose-pine').setup({
-- Set colorscheme after options
vim.cmd('colorscheme rose-pine')
```
**[lualine.nvim](https://github.com/wbthomason/packer.nvim)**
```lua
require('lualine').setup {
options = {
-- ... your lualine config
--- @usage 'rose-pine'|'rose-pine-alt'
theme = 'rose-pine',
-- ... your lualine config
}
}
```
## Contributing