X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/02a155360e33a286bc267ca031b9b386eecb1c00..323d09a696fc17d73d44ac18b773449f47dd7f97:/wezterm/wezterm.lua?ds=sidebyside 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