diff --git a/wezterm/.luarc.json b/wezterm/.luarc.json new file mode 100644 index 0000000..e69de29 diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua new file mode 100644 index 0000000..7866a3d --- /dev/null +++ b/wezterm/wezterm.lua @@ -0,0 +1,27 @@ +local wezterm = require "wezterm" + +local config = wezterm.config_builder() + +config.hide_tab_bar_if_only_one_tab = true + +local padding = 2 +config.window_padding = { + left = (padding * 1) .. "cell", + right = (padding * 1) .. "cell", + top = (padding * .4) .. "cell", + bottom = (padding * .4) .. "cell" +} + +config.font = wezterm.font "Fira Code" + +local darkfile = os.getenv("HOME") .. "/.dark" + +wezterm.add_to_config_reload_watch_list(darkfile) + +if io.open(darkfile) then + config.color_scheme = "Apprentice (base16)" +else + config.color_scheme = "Atelier Plateau Light (base16)" +end + +return config