Wezterm

I came across Wezterm when I was looking for my preferred terminal emulator.. for a while I thought it was Kitty.. then Terminator. For a long time I used nothing but Alacritty.

I never caught on to the fact that Wezterm is a terminal emulator and a multiplexer.

It looks butt-ugly when you first run it.. and the default keys are no good. But since it’s so simple to configure.. you will soon have it look and work the way you want.

Half an hour to figure out this…

wezterm.on("gui-startup", function()
  local tab_1, pane_1, win = mux.spawn_window {}
  pane_1:split { direction = "Bottom", size = 0.2 }
  
  local _, pane_2, _ = win:spawn_tab {}
  pane_2:split { direction = "Bottom", size = 0.2 }
  pane_2:activate()
  
  tab_1:activate()
  pane_1:activate()
end)