dotfiles/.config/wezterm/wezterm.lua

33 lines
527 B
Lua
Raw Normal View History

2024-02-14 19:58:23 -08:00
-- wezterm API
2024-02-14 21:09:46 -08:00
local wezterm = require("wezterm")
2024-02-14 19:58:23 -08:00
local config = wezterm.config_builder()
2024-02-14 21:09:46 -08:00
config.color_scheme = "Catppuccin Macchiato"
2024-02-14 19:58:23 -08:00
config.enable_tab_bar = false
2024-02-16 21:12:48 -08:00
config.default_prog = { "/usr/bin/fish", "-c tmux attach -t main || tmux new -s main" }
2024-02-14 19:58:23 -08:00
2024-02-14 21:09:46 -08:00
config.font = wezterm.font({
family = "FiraCode Nerd Font",
harfbuzz_features = {
"cv02",
"cv06",
"ss01",
"cv14",
"onum",
"ss04",
"cv18",
"cv31",
"cv30",
"cv25",
"cv26",
"cv32",
"ss06",
"ss07",
},
})
config.font_size = 11.0
2024-02-14 19:58:23 -08:00
return config