config/homes/common/wezterm.nix

24 lines
542 B
Nix
Raw Permalink Normal View History

2024-09-15 12:56:25 +01:00
{
programs.wezterm = {
enable = true;
enableZshIntegration = true;
2024-09-15 12:56:25 +01:00
extraConfig = ''
return {
front_end = 'WebGpu',
font = wezterm.font 'Iosevka Nerd Font',
font_size = 16,
2024-09-15 12:56:25 +01:00
color_scheme = 'OneDark (base16)',
hide_tab_bar_if_only_one_tab = true,
native_macos_fullscreen_mode = true,
2024-09-15 12:56:25 +01:00
window_close_confirmation = 'NeverPrompt',
window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}
}
'';
};
}