Created
May 22, 2024 08:35
-
-
Save TreyBastian/fa4b22246be2ae77c45cef53134efd88 to your computer and use it in GitHub Desktop.
My Wezterm config
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 = wezterm.config_builder() | |
config.color_scheme = 'Batman' | |
config.wsl_domains = { | |
{ | |
name = 'WSL:Ubuntu', | |
distribution = 'Ubuntu', | |
}, | |
} | |
config.default_domain = 'WSL:Ubuntu' | |
config.hide_tab_bar_if_only_one_tab = true | |
config.use_fancy_tab_bar = false | |
config.font = wezterm.font 'GoMono Nerd Font' | |
config.color_scheme = 'Gruvbox Material (Gogh)' | |
return config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment