2024-03-15 12:47:44 -07:00
|
|
|
local wezterm = require 'wezterm';
|
|
|
|
|
local config = {
|
2024-01-30 11:08:42 -08:00
|
|
|
font = wezterm.font 'FiraCode Nerd Font',
|
|
|
|
|
color_scheme = "Dracula",
|
2024-02-29 22:14:53 -08:00
|
|
|
warn_about_missing_glyphs = true,
|
2024-01-30 11:08:42 -08:00
|
|
|
check_for_updates = false,
|
2024-02-18 02:31:04 -08:00
|
|
|
hide_tab_bar_if_only_one_tab = true,
|
2024-01-30 11:08:42 -08:00
|
|
|
}
|
2024-03-15 12:47:44 -07:00
|
|
|
return config
|