summaryrefslogtreecommitdiff
path: root/wezterm/.wezterm.lua
diff options
context:
space:
mode:
Diffstat (limited to 'wezterm/.wezterm.lua')
-rw-r--r--wezterm/.wezterm.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/wezterm/.wezterm.lua b/wezterm/.wezterm.lua
new file mode 100644
index 0000000..b99a500
--- /dev/null
+++ b/wezterm/.wezterm.lua
@@ -0,0 +1,24 @@
+-- Pull in the wezterm API
+local wezterm = require 'wezterm'
+
+-- This will hold the configuration.
+local config = wezterm.config_builder()
+
+-- This is where you actually apply your config choices
+config.font = wezterm.font 'SarasaFixedSC Nerd Font Mono'
+config.font_size = 13
+config.window_frame = {
+ -- The font used in the tab bar.
+ -- Roboto Bold is the default; this font is bundled
+ -- with wezterm.
+ -- Whatever font is selected here, it will have the
+ -- main font setting appended to it to pick up any
+ -- fallback fonts you may have used there.
+ font = wezterm.font { family = 'San Francisco', weight = 'Bold' },
+}
+
+-- For example, changing the color scheme:
+config.color_scheme = 'iTerm2 Light Background'
+
+-- and finally, return the configuration to wezterm
+return config