mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
27 lines
772 B
Lua
27 lines
772 B
Lua
---@class dracula.config
|
|
---@field transparent? boolean
|
|
---@field on_highlights? fun(colors: dracula.palette, color: table): dracula.highlights
|
|
---@field on_colors? fun(colors: dracula.palette, color: table): dracula.palette
|
|
return {
|
|
transparent = false,
|
|
on_highlights = nil,
|
|
on_colors = nil,
|
|
plugins = {
|
|
['nvim-treesitter'] = true,
|
|
['nvim-lspconfig'] = true,
|
|
['nvim-navic'] = true,
|
|
['nvim-cmp'] = true,
|
|
['indent-blankline.nvim'] = true,
|
|
['bufferline.nvim'] = true,
|
|
['neo-tree.nvim'] = true,
|
|
['nvim-tree.lua'] = true,
|
|
['which-key.nvim'] = true,
|
|
['dashboard-nvim'] = true,
|
|
['gitsigns.nvim'] = true,
|
|
['neogit'] = true,
|
|
['todo-comments.nvim'] = true,
|
|
['lazy.nvim'] = true,
|
|
['telescope.nvim'] = true,
|
|
},
|
|
}
|