mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
docs: add alt lualine theme
This commit is contained in:
parent
b18db6394e
commit
e8f4d8310c
1 changed files with 27 additions and 17 deletions
44
readme.md
44
readme.md
|
|
@ -28,28 +28,38 @@ use({
|
||||||
|
|
||||||
> PR's are more than welcome if your favourite plugin is missing
|
> PR's are more than welcome if your favourite plugin is missing
|
||||||
|
|
||||||
- [Treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
|
- [neovim diagnostics](https://neovim.io/doc/user/lsp.html)
|
||||||
- [Diagnostics](https://neovim.io/doc/user/lsp.html)
|
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
|
||||||
- [Barbar](https://github.com/romgrk/barbar.nvim)
|
- [barbar.nvim](https://github.com/romgrk/barbar.nvim)
|
||||||
- [Gitsigns](https://github.com/lewis6991/gitsigns.nvim)
|
- [gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)
|
||||||
- [Modes](https://github.com/mvllow/modes.nvim)
|
- [mode.nvim](https://github.com/mvllow/modes.nvim)
|
||||||
- [NvimTree](https://github.com/kyazdani42/nvim-tree.lua)
|
- [nvim-tree.lua](https://github.com/kyazdani42/nvim-tree.lua)
|
||||||
- [WhichKey](https://github.com/folke/which-key.nvim)
|
- [which-key.nvim](https://github.com/folke/which-key.nvim)
|
||||||
- [Indent-Blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim)
|
- [indent-blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim)
|
||||||
- [Neogit](https://github.com/TimUntersberger/neogit)
|
- [neogit](https://github.com/TimUntersberger/neogit)
|
||||||
- [Neorg](https://github.com/nvim-neorg/neorg)
|
- [neorg](https://github.com/nvim-neorg/neorg)
|
||||||
- [Lspsaga](https://github.com/tami5/lspsaga.nvim)
|
- [lspsaga.nvim](https://github.com/tami5/lspsaga.nvim)
|
||||||
- [Pounce](https://github.com/rlane/pounce.nvim)
|
- [pounce.nvim](https://github.com/rlane/pounce.nvim)
|
||||||
- [Telescope](https://github.com/nvim-telescope/telescope.nvim)
|
- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
|
||||||
- [Lualine](https://github.com/hoob3rt/lualine.nvim)
|
- [lualine.nvim](https://github.com/nvim-lualine/lualine.nvim)
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
require('lualine').setup({
|
use({
|
||||||
options = { theme = 'rose-pine' }
|
'nvim-lualine/lualine.nvim',
|
||||||
|
-- Fix mismatch palette between variants
|
||||||
|
event = 'ColorScheme',
|
||||||
|
config = function()
|
||||||
|
require('lualine').setup({
|
||||||
|
options = {
|
||||||
|
---@usage 'rose-pine' | 'rose-pine-alt'
|
||||||
|
theme = 'rose-pine'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
end
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
- [Galaxyline fork](https://github.com/NTBBloodbath/galaxyline.nvim)
|
- [galaxyline.nvim fork](https://github.com/NTBBloodbath/galaxyline.nvim)
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
local colors = require("galaxyline.themes.colors")["rose-pine"]
|
local colors = require("galaxyline.themes.colors")["rose-pine"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue