All my dotfiles
1-- Pull in the wezterm API
2local wezterm = require 'wezterm'
3
4-- This will hold the configuration.
5local config = wezterm.config_builder()
6
7-- This is where you actually apply your config choices
8
9-- Hide the tab bar when only 1 tab.
10config.hide_tab_bar_if_only_one_tab = true
11
12-- Use the simpler tab bar.
13config.use_fancy_tab_bar = false
14
15-- Set fonts.
16config.font = wezterm.font_with_fallback({'0xProto', 'JetBrains Mono NL', 'FiraCode Nerd Font Mono'})
17config.font_size = 14.0
18
19-- No window decorations.
20-- config.window_decorations = "RESIZE"
21
22-- and finally, return the configuration to wezterm
23return config