Updated Home (markdown)

not 2024-01-18 10:38:01 -06:00
commit ab6f1e40ab

146
Home.md

@ -2,82 +2,86 @@
> Information may be out of date—anyone is welcome to modify this list. If you experience a plugin that is unsupported or could be improved, please create a pull request.
- _**[barbar.nvim](https://github.com/romgrk/barbar.nvim)**_
- _**[bufferline.nvim](https://github.com/akinsho/bufferline.nvim)**_
- **[barbar.nvim](https://github.com/romgrk/barbar.nvim)**
- **[dashboard.nvim](https://github.com/glepnir/dashboard-nvim)**
- **[diagnostics](https://neovim.io/doc/user/lsp.html)**
- **[healthcheck](https://neovim.io/doc/user/pi_health.html#health-dev)**
- **[gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)**
- **[indent-blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim)**
- **[leap.nvim](https://github.com/ggandor/leap.nvim)**
- **[lsp-highlight-codelens](https://neovim.io/doc/user/lsp.html#lsp-highlight-codelens)**
- **[lspsaga.nvim](https://github.com/tami5/lspsaga.nvim)**
- **[LSP Semantic Token Groups](https://neovim.io/doc/user/lsp.html#lsp-semantic-highlight)**
- **[lsp_signature.nvim](https://github.com/ray-x/lsp_signature.nvim)**
- **[mini.nvim](https://github.com/echasnovski/mini.nvim)**
- **[modes.nvim](https://github.com/mvllow/modes.nvim)**
- **[neogit](https://github.com/TimUntersberger/neogit)**
- **[neorg](https://github.com/nvim-neorg/neorg)**
- **[neo-tree.nvim](https://github.com/nvim-neo-tree/neo-tree.nvim)**
- **[nvim-cmp](https://github.com/hrsh7th/nvim-cmp)**
- **[nvim-dap-ui](https://github.com/rcarriga/nvim-dap-ui)**
- **[nvim-navic](https://github.com/SmiteshP/nvim-navic)**
- **[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)**
- **[noice.nvim](https://github.com/folke/noice.nvim)**
- **[pounce.nvim](https://github.com/rlane/pounce.nvim)**
- **[telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)**
- **[vim.lsp.buf.document_highlight()](https://neovim.io/doc/user/lsp.html#lsp-highlight)**
- **[vimwiki](https://github.com/vimwiki/vimwiki)**
- **[which-key.nvim](https://github.com/folke/which-key.nvim)**
```lua
use({
'akinsho/bufferline.nvim',
event = 'ColorScheme',
config = function()
local highlights = require('rose-pine.plugins.bufferline')
require('bufferline').setup({ highlights = highlights })
end
})
```
### Plugin configurations
- _**[dashboard.nvim](https://github.com/glepnir/dashboard-nvim)**_
- _**[diagnostics](https://neovim.io/doc/user/lsp.html)**_
- _**[galaxyline.nvim fork](https://github.com/NTBBloodbath/galaxyline.nvim)**_
**[bufferline.nvim](https://github.com/akinsho/bufferline.nvim)**
```lua
-- Access colors via galaxyline's recommended naming
-- E.g. `highlights.blue`, `highlights.yellow`
local highlights = require('rose-pine.plugins.galaxyline')
```
```lua
{
"akinsho/bufferline.nvim",
event = "ColorScheme",
config = function()
require("bufferline").setup({
highlights = require("rose-pine.plugins.bufferline")
})
end
}
```
- _**[healthcheck](https://neovim.io/doc/user/pi_health.html#health-dev)**_
- _**[gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim)**_
- _**[indent-blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim)**_
- _**[leap.nvim](https://github.com/ggandor/leap.nvim)**_
- _**[lsp-highlight-codelens](https://neovim.io/doc/user/lsp.html#lsp-highlight-codelens)**_
- _**[lspsaga.nvim](https://github.com/tami5/lspsaga.nvim)**_
- _**[LSP Semantic Token Groups](https://neovim.io/doc/user/lsp.html#lsp-semantic-highlight)**_
- _**[lsp_signature.nvim](https://github.com/ray-x/lsp_signature.nvim)**_
- _**[lualine.nvim](https://github.com/nvim-lualine/lualine.nvim)**_
**[galaxyline.nvim fork](https://github.com/NTBBloodbath/galaxyline.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
})
```
```lua
-- Access colors via galaxyline's recommended naming
-- @example `highlights.blue`, `highlights.yellow`
local highlights = require("rose-pine.plugins.galaxyline")
```
- _**[mini.nvim](https://github.com/echasnovski/mini.nvim)**_
- _**[modes.nvim](https://github.com/mvllow/modes.nvim)**_
- _**[neogit](https://github.com/TimUntersberger/neogit)**_
- _**[neorg](https://github.com/nvim-neorg/neorg)**_
- _**[neo-tree.nvim](https://github.com/nvim-neo-tree/neo-tree.nvim)**_
- _**[nvim-cmp](https://github.com/hrsh7th/nvim-cmp)**_
- _**[nvim-dap-ui](https://github.com/rcarriga/nvim-dap-ui)**_
- _**[nvim-navic](https://github.com/SmiteshP/nvim-navic)**_
- _**[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)**_
- _**[noice.nvim](https://github.com/folke/noice.nvim)**_
- _**[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)**_
**[lualine.nvim](https://github.com/nvim-lualine/lualine.nvim)**
```lua
use({
'akinsho/toggleterm.nvim',
event = 'ColorScheme',
config = function()
local highlights = require('rose-pine.plugins.toggleterm')
require('toggleterm').setup({ highlights = highlights })
end
})
```
```lua
{
"nvim-lualine/lualine.nvim",
event = "ColorScheme",
config = function()
require("lualine").setup({
options = {
--- @usage 'rose-pine' | 'rose-pine-alt'
theme = "rose-pine"
}
})
end
}
```
- _**[vim.lsp.buf.document_highlight()](https://neovim.io/doc/user/lsp.html#lsp-highlight)**_
- _**[vimwiki](https://github.com/vimwiki/vimwiki)**_
- _**[which-key.nvim](https://github.com/folke/which-key.nvim)**_
**[toggleterm.nvim](https://github.com/akinsho/toggleterm.nvim)**
```lua
{
"akinsho/toggleterm.nvim",
event = "ColorScheme",
config = function()
require("toggleterm").setup({
highlights = require("rose-pine.plugins.toggleterm")
})
end
}
```