maxmx03.dracula.nvim/lua/dracula/config.lua
2024-02-22 10:09:45 -03:00

25 lines
714 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-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,
},
}