Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Pull in the wezterm API
- local wezterm = require('wezterm')
- -- This will hold the configuration.
- config = wezterm.config_builder()
- config = {
- automatically_reload_config = true,
- default_cursor_style = 'BlinkingBar',
- initial_cols = 105,
- initial_rows = 28,
- line_height = 1.0,
- window_padding = {
- left = 10,
- right = 10,
- top = 5,
- bottom = 5,
- },
- font = wezterm.font("Adwaita Mono", { weight = "Medium" }),
- font_size = 14,
- color_scheme = 'Aura (Gogh)'
- }
- -- Finally, return the configuration to wezterm:
- return config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement