]> git.rmz.io Git - dotfiles.git/blob - wezterm/wezterm.lua
a4627b1db1355b2fad42d912b159e0e615b395fc
[dotfiles.git] / wezterm / wezterm.lua
1 ---@type WezTerm
2 local wezterm = require('wezterm')
3 ---@type _.wezterm.ConfigBuilder
4 local config = {}
5
6 -- color
7 config.color_scheme = 'nord'
8 -- font
9 config.font = wezterm.font('Fira Code')
10 config.font_size = 11
11 config.harfbuzz_features = { 'ss03' }
12
13 config.adjust_window_size_when_changing_font_size = false
14
15 config.hide_tab_bar_if_only_one_tab = true
16 config.tab_bar_at_bottom = true
17
18 config.quick_select_alphabet = "aoeuisnthd"
19
20 return config