mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Created Plugin configurations (markdown)
parent
15f653390e
commit
dfe9384460
1 changed files with 41 additions and 0 deletions
41
Plugin-configurations.md
Normal file
41
Plugin-configurations.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
## bufferline.nvim
|
||||
|
||||
```lua
|
||||
{
|
||||
'akinsho/bufferline.nvim',
|
||||
event = 'ColorScheme',
|
||||
config = function()
|
||||
local highlights = require('rose-pine.plugins.bufferline')
|
||||
require('bufferline').setup({ highlights = highlights })
|
||||
end
|
||||
}
|
||||
|
||||
## lualine.nvim
|
||||
|
||||
```lua
|
||||
{
|
||||
'nvim-lualine/lualine.nvim',
|
||||
event = 'ColorScheme',
|
||||
config = function()
|
||||
require('lualine').setup({
|
||||
options = {
|
||||
--- @usage 'rose-pine' | 'rose-pine-alt'
|
||||
theme = 'rose-pine'
|
||||
}
|
||||
})
|
||||
end
|
||||
}
|
||||
```
|
||||
|
||||
## toggleterm.nvim
|
||||
|
||||
```lua
|
||||
{
|
||||
'akinsho/toggleterm.nvim',
|
||||
event = 'ColorScheme',
|
||||
config = function()
|
||||
local highlights = require('rose-pine.plugins.toggleterm')
|
||||
require('toggleterm').setup({ highlights = highlights })
|
||||
end
|
||||
}
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue