Skip to content

Commit

Permalink
basic WezTerm setup for Ubuntu and Wayland
Browse files Browse the repository at this point in the history
  • Loading branch information
gzagatti committed Jan 2, 2025
1 parent b998ea9 commit ef9d417
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit ef9d417

Please sign in to comment.