home-profile: move wezterm config to own file

This commit is contained in:
2024-03-31 22:28:57 +02:00
parent 369ed384a4
commit a1eccd4d77
2 changed files with 16 additions and 9 deletions
@@ -0,0 +1,10 @@
local wezterm_config = {};
function materus_wezterm_config()
local wezterm = require 'wezterm';
local cfg = wezterm.config_builder();
cfg.hide_tab_bar_if_only_one_tab = true;
cfg.enable_scroll_bar = true;
cfg.font = wezterm.font 'Hack Nerd Font';
return cfg;
end