From: Samir Benmendil Date: Wed, 21 Feb 2024 01:15:01 +0000 (+0000) Subject: wezterm: introduce wezterm with basic config X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/323d09a696fc17d73d44ac18b773449f47dd7f97 wezterm: introduce wezterm with basic config --- diff --git a/Makefile b/Makefile index a245778..fb25376 100644 --- a/Makefile +++ b/Makefile @@ -178,6 +178,10 @@ weechat: $(XDG_CONFIG_HOME) $(XDG_CACHE_HOME) mkdir -p $(XDG_CACHE_HOME)/weechat .PHONY: weechat +wezterm: $(XDG_CONFIG_HOME) + ln -sfT $(APATH)/$@ $(XDG_CONFIG_HOME)/$@ +.PHONY: wezterm + zathura: $(XDG_CONFIG_HOME) ln -sfT $(APATH)/$@ $(XDG_CONFIG_HOME)/$@ .PHONY: zathura diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua new file mode 100644 index 0000000..a4627b1 --- /dev/null +++ b/wezterm/wezterm.lua @@ -0,0 +1,20 @@ +---@type WezTerm +local wezterm = require('wezterm') +---@type _.wezterm.ConfigBuilder +local config = {} + +-- color +config.color_scheme = 'nord' +-- font +config.font = wezterm.font('Fira Code') +config.font_size = 11 +config.harfbuzz_features = { 'ss03' } + +config.adjust_window_size_when_changing_font_size = false + +config.hide_tab_bar_if_only_one_tab = true +config.tab_bar_at_bottom = true + +config.quick_select_alphabet = "aoeuisnthd" + +return config