refactor(wezterm): improve final config log by removing \n

This commit is contained in:
Price Hiller 2023-08-24 04:39:44 -05:00
parent efb8c8c03b
commit 920a02cf3f
No known key found for this signature in database

View File

@ -27,6 +27,6 @@ end
local config = wlib.Table.merge(gpu, events, fonts, theme, tabbar, misc, rendering, keybinds, os_config)
log.debug("Final Wezterm Config:\n" .. require("lib.inspect").inspect(config, { newline = " ", indent = "" }))
log.debug("Final Wezterm Config: " .. require("lib.inspect").inspect(config, { newline = " ", indent = "" }))
return config