From ef9d4179c9b0b064e919f4177a243f3b7ad31592 Mon Sep 17 00:00:00 2001 From: gzagatti Date: Thu, 2 Jan 2025 20:56:17 +0100 Subject: [PATCH] basic WezTerm setup for Ubuntu and Wayland --- wezterm/wezterm.lua | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index 8a14c29..78c76d5 100755 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -3,8 +3,9 @@ local wezterm = require("wezterm") local config = wezterm.config_builder() config.term = "wezterm" -config.default_domain = "local" -config.default_prog = { "wsl.exe", "--cd", "~" } +config.front_end = "WebGpu" +-- config.default_domain = "local" +-- config.default_prog = { "wsl.exe", "--cd", "~" } -- config.default_domain = "WSL:Ubuntu" -- config.default_cwd = wezterm.home_dir config.pane_focus_follows_mouse = false @@ -47,6 +48,13 @@ config.keys = { } -- theme +-- font +config.font = wezterm.font({ + family = "Fira Code", + harfbuzz_features = { 'ss08=1', 'onum' }, +}) +config.font_size = 16 + -- tab config.tab_bar_at_bottom = true config.use_fancy_tab_bar = false