mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Initial Home page
commit
cd390a5cc6
1 changed files with 68 additions and 0 deletions
68
Home.md
Normal file
68
Home.md
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
## Supported plugins
|
||||
|
||||
- _**[barbar.nvim](https://github.com/romgrk/barbar.nvim)**_
|
||||
- _**[bufferline.nvim](https://github.com/akinsho/bufferline.nvim)**_
|
||||
|
||||
```lua
|
||||
use({
|
||||
'akinsho/bufferline.nvim',
|
||||
event = 'ColorScheme',
|
||||
config = function()
|
||||
local highlights = require('rose-pine.plugins.bufferline')
|
||||
require('bufferline').setup({ highlights = highlights })
|
||||
end
|
||||
})
|
||||
```
|
||||
|
||||
- _**[diagnostics](https://neovim.io/doc/user/lsp.html)**_
|
||||
- _**[galaxyline.nvim fork](https://github.com/NTBBloodbath/galaxyline.nvim)**_
|
||||
|
||||
```lua
|
||||
-- Access colors via galaxyline's recommended naming
|
||||
-- E.g. `highlights.blue`, `highlights.yellow`
|
||||
local highlights = require('rose-pine.plugins.galaxyline')
|
||||
```
|
||||
|
||||
|
||||
- _**[gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)**_
|
||||
- _**[indent-blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim)**_
|
||||
- _**[lspsaga.nvim](https://github.com/tami5/lspsaga.nvim)**_
|
||||
- _**[lualine.nvim](https://github.com/nvim-lualine/lualine.nvim)**_
|
||||
|
||||
```lua
|
||||
use({
|
||||
'nvim-lualine/lualine.nvim',
|
||||
event = 'ColorScheme',
|
||||
config = function()
|
||||
require('lualine').setup({
|
||||
options = {
|
||||
--- @usage 'rose-pine' | 'rose-pine-alt'
|
||||
theme = 'rose-pine'
|
||||
}
|
||||
})
|
||||
end
|
||||
})
|
||||
```
|
||||
|
||||
- _**[modes.nvim](https://github.com/mvllow/modes.nvim)**_
|
||||
- _**[neogit](https://github.com/TimUntersberger/neogit)**_
|
||||
- _**[neorg](https://github.com/nvim-neorg/neorg)**_
|
||||
- _**[nvim-notify](https://github.com/rcarriga/nvim-notify)**_
|
||||
- _**[nvim-tree.lua](https://github.com/kyazdani42/nvim-tree.lua)**_
|
||||
- _**[nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)**_
|
||||
- _**[pounce.nvim](https://github.com/rlane/pounce.nvim)**_
|
||||
- _**[telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)**_
|
||||
- _**[toggleterm.nvim](https://github.com/akinsho/toggleterm.nvim)**_
|
||||
|
||||
```lua
|
||||
use({
|
||||
'akinsho/toggleterm.nvim',
|
||||
event = 'ColorScheme',
|
||||
config = function()
|
||||
local highlights = require('rose-pine.plugins.toggleterm')
|
||||
require('toggleterm').setup({ highlights = highlights })
|
||||
end
|
||||
})
|
||||
```
|
||||
|
||||
- _**[which-key.nvim](https://github.com/folke/which-key.nvim)**_
|
||||
Loading…
Add table
Add a link
Reference in a new issue