-
-
Notifications
You must be signed in to change notification settings - Fork 147
Home
Anupam Basu edited this page Oct 24, 2024
·
10 revisions
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
- dashboard.nvim
- diagnostics
- healthcheck
- gitsigns.nvim
- indent-blankline.nvim
- leap.nvim
- lsp-highlight-codelens
- lspsaga.nvim
- LSP Semantic Token Groups
- lsp_signature.nvim
- mini.nvim
- modes.nvim
- neogit
- neorg
- neo-tree.nvim
- nvim-cmp
- nvim-dap-ui
- nvim-navic
- nvim-notify
- nvim-tree.lua
- nvim-treesitter
- noice.nvim
- obsidian.nvim
- pounce.nvim
- telescope.nvim
- vim.lsp.buf.document_highlight()
- vimwiki
- which-key.nvim
{
"akinsho/bufferline.nvim",
event = "ColorScheme",
config = function()
require("bufferline").setup({
highlights = require("rose-pine.plugins.bufferline")
})
end
}
-- Access colors via galaxyline's recommended naming
-- @example `highlights.blue`, `highlights.yellow`
local highlights = require("rose-pine.plugins.galaxyline")
{
"nvim-lualine/lualine.nvim",
event = "ColorScheme",
config = function()
require("lualine").setup({
options = {
--- @usage 'rose-pine' | 'rose-pine-alt'
theme = "rose-pine"
}
})
end
}
{
"epwalsh/obsidian.nvim",
config = function()
require("obsidian").setup({
ui = {
hl_groups = require("rose-pine.plugins.obsidian")
}
})
end
}
{
"akinsho/toggleterm.nvim",
event = "ColorScheme",
config = function()
require("toggleterm").setup({
highlights = require("rose-pine.plugins.toggleterm")
})
end
}