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

12 lines
260 B
Lua

local user_config = require('core.user')
local u = require('utils')
local config = u.merge({
-- use the night style
style = 'night',
light_style = 'moon',
sidebars = { 'qf', 'packer', 'help' },
}, user_config.plugins.tokyonight or {})
return config