nvim/lua/plugins/tokyonight/config.lua
2025-03-05 09:36:07 -05:00

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