mirror of
https://github.com/reonokiy/dotfiles.git
synced 2025-06-14 21:56:47 +02:00
20 lines
465 B
Cheetah
20 lines
465 B
Cheetah
local wezterm = require 'wezterm'
|
|
local config = wezterm.config_builder()
|
|
|
|
config.color_scheme = 'Catppuccin Mocha'
|
|
|
|
config.font = wezterm.font_with_fallback {
|
|
'Fira Code Nerd Font Mono',
|
|
'Cascadia Code',
|
|
}
|
|
|
|
config.window_decorations = "TITLE"
|
|
config.hide_tab_bar_if_only_one_tab = true
|
|
config.line_height = 1.2
|
|
|
|
{{ if eq .chezmoi.os "windows" -}}
|
|
config.default_domain = 'WSL:AlmaLinuxOS-9'
|
|
{{- else if eq .chezmoi.os "linux" -}}
|
|
{{- end }}
|
|
|
|
return config
|