return { { enabled = false, 'olivercederborg/poimandres.nvim', lazy = false, config = function() require('poimandres').setup({ disable_background = true, -- dim_nc_background = true, }) end, -- optionally set the colorscheme within lazy config -- init = function() -- vim.cmd('colorscheme poimandres') -- end, }, { enabled = true, 'https://github.com/slugbyte/lackluster.nvim', lazy = true, config = function() local lackluster = require('lackluster') lackluster.setup({ tweak_color = { lack = '#70649a', -- luster = '#ff0000', }, tweak_syntax = { comment = lackluster.color.gray6, }, tweak_background = { normal = 'none', }, tweak_highlight = { ['@markup.heading'] = { fg = '#ffffff', }, ['@comment'] = { italic = true, }, }, tweak_ui = { enable_end_of_buffer = true, }, }) end, init = function() vim.g.darkmode_colorscheme_dark = 'lackluster' end, }, { enabled = true, 'https://github.com/elaijuh/acme.nvim', lazy = true, init = function() vim.g.darkmode_colorscheme_light = 'acme' end, }, }