Skip to content

Commit

Permalink
feat(wezterm): make config overriding easier
Browse files Browse the repository at this point in the history
  • Loading branch information
aikow committed Jan 27, 2025
1 parent b0e5186 commit 5081bc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ config.keys = require("user.keys")
-- Load a module called local and use it to apply local settings
local ok, module = pcall(require, "local")
if ok and type(module.setup) == "function" then
module.setup(config)
config = module.setup(config)
end

return config

0 comments on commit 5081bc1

Please sign in to comment.