mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
add toggleterm highlights and initial bufferline highlights (#77)
This commit is contained in:
parent
0439bb7eee
commit
3f6586e80f
3 changed files with 255 additions and 0 deletions
29
readme.md
29
readme.md
|
|
@ -66,6 +66,35 @@ use({
|
|||
local colors = require("galaxyline.themes.colors")["rose-pine"]
|
||||
```
|
||||
|
||||
- [bufferline.nvim](https://github.com/akinsho/bufferline.nvim)
|
||||
|
||||
> PR's welcome to improve support
|
||||
|
||||
```lua
|
||||
use({
|
||||
'akinsho/bufferline.nvim',
|
||||
event = 'ColorScheme',
|
||||
config = function()
|
||||
local highlights = require('rose-pine.plugins.bufferline')
|
||||
require('bufferline').setup({ highlights = highlights })
|
||||
end
|
||||
})
|
||||
```
|
||||
|
||||
- [toggleterm.nvim](https://github.com/akinsho/toggleterm.nvim)
|
||||
|
||||
```lua
|
||||
require('toggleterm').setup({ highlights = highlights })
|
||||
use({
|
||||
'akinsho/toggleterm.nvim',
|
||||
event = 'ColorScheme',
|
||||
config = function()
|
||||
local highlights = require('rose-pine.plugins.toggleterm')
|
||||
require('toggleterm').setup({ highlights = highlights })
|
||||
end
|
||||
})
|
||||
```
|
||||
|
||||
## Gallery
|
||||
|
||||
**Rosé Pine**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue