16 lines
296 B
Lua
16 lines
296 B
Lua
local config = {
|
|
style = 'night',
|
|
light_style = 'moon',
|
|
sidebars = { 'qf', 'packer', 'help' },
|
|
}
|
|
|
|
return {
|
|
{ -- color scheme
|
|
'folke/tokyonight.nvim',
|
|
lazy = false,
|
|
config = function()
|
|
require('tokyonight').setup(config)
|
|
vim.cmd('color tokyonight')
|
|
end,
|
|
},
|
|
}
|