You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
278 B
12 lines
278 B
2 years ago
|
local wezterm = require 'wezterm'
|
||
|
|
||
|
return {
|
||
|
default_prog = { "nu" },
|
||
|
color_scheme = "Violet Light",
|
||
|
font_size = 13,
|
||
|
hide_tab_bar_if_only_one_tab = true,
|
||
|
scrollback_lines = 1000000,
|
||
|
enable_scroll_bar = true,
|
||
|
font = wezterm.font('Victor Mono', { italic = true }),
|
||
|
}
|