Advertisement
Wrigs

wezterm.lua

Jul 10th, 2025 (edited)
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.60 KB | None | 0 0
  1. -- Pull in the wezterm API
  2. local wezterm = require('wezterm')
  3.  
  4. -- This will hold the configuration.
  5. config = wezterm.config_builder()
  6.  
  7. config = {
  8.     automatically_reload_config = true,
  9.     default_cursor_style = 'BlinkingBar',
  10.     initial_cols = 105,
  11.     initial_rows = 28,
  12.     line_height = 1.0,
  13.     window_padding = {
  14.         left = 10,
  15.         right = 10,
  16.         top = 5,
  17.         bottom = 5,
  18.     },
  19.     font = wezterm.font("Adwaita Mono", { weight = "Medium" }),
  20.     font_size = 14,
  21.     color_scheme = 'Aura (Gogh)'
  22. }
  23.  
  24. -- Finally, return the configuration to wezterm:
  25. return config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement