12 lines
247 B
Lua
12 lines
247 B
Lua
local config = require('config')
|
|
local u = require('utils')
|
|
|
|
local config = u.merge({
|
|
|
|
-- use the night style
|
|
style = 'night',
|
|
light_style = 'moon',
|
|
sidebars = { 'qf', 'packer', 'help' },
|
|
}, config.plugins.tokyonight or {})
|
|
|
|
return config
|