Last active
April 17, 2023 13:42
-
-
Save STBoyden/f01f3dd1fd873e28820c6b1019d2fa40 to your computer and use it in GitHub Desktop.
Wezterm Configuration (Linux)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local wezterm = require("wezterm") | |
| local config = {} | |
| if wezterm.config_builder then | |
| config = wezterm.config_builder() | |
| end | |
| config.use_fancy_tab_bar = false | |
| config.hide_tab_bar_if_only_one_tab = true | |
| config.font_size = 14.0 | |
| config.default_prog = { "/var/home/sboyden/.cargo/bin/nu" } | |
| config.color_scheme = "carbonfox" | |
| config.initial_cols = 120 | |
| config.initial_rows = 30 | |
| config.window_padding = { | |
| left = 0, | |
| right = 0, | |
| top = 0, | |
| bottom = 0, | |
| } | |
| config.window_frame = { | |
| active_titlebar_bg = "#161616", | |
| button_bg = "#161616", | |
| } | |
| return config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment