xcooper

wezconfig

Feb 4th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | Source Code | 0 0
  1. local wezterm = require("wezterm")
  2. local mux = wezterm.mux
  3.  
  4. wezterm.on("gui-startup", function(cmd)
  5.     local tab, pane, window = mux.spawn_window(cmd or {})
  6.     window:gui_window():maximize()
  7. end)
  8.  
  9. return {
  10.     color_scheme = "Solarized Dark - Patched",
  11.     font_size = 16.0,
  12.     warn_about_missing_glyphs = false,
  13.     font = wezterm.font_with_fallback({
  14.         "JetBrains Mono",
  15.         "Sarasa Mono TC",
  16.         "Space Mono",
  17.         "Roboto Mono",
  18.         "Noto Sans Mono CJK HK",
  19.     }),
  20. }
  21.  
Add Comment
Please, Sign In to add comment