diff options
-rw-r--r-- | .wezterm.lua | 9 | ||||
-rwxr-xr-x | scripts/bootstrap.sh | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/.wezterm.lua b/.wezterm.lua new file mode 100644 index 0000000..4500a9b --- /dev/null +++ b/.wezterm.lua @@ -0,0 +1,9 @@ +local wezterm = require 'wezterm' + +return { + font = wezterm.font_with_fallback { + 'DejaVu Sans Mono', + 'Monaco', + }, + font_size = 16, +} diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 36696ce..137efbf 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -22,7 +22,7 @@ link_all () { .vimrc .vim .path .functions .emacs.d .gitconfig \ .config/i3 .config/polybar .xinitrc .pam_environment \ .zprofile .newsboat .ledgerrc .nnnrc .alacritty.yml .fzfrc .zplugrc \ - .env .zrc .config/kitty + .env .zrc .config/kitty .wezterm.lua } main () { |