From 1a4fd13f90011565c8969964eecf9eee01ffbf60 Mon Sep 17 00:00:00 2001 From: Michael Yockey Date: Sun, 11 Aug 2024 00:08:19 -0400 Subject: [PATCH] Add Wezterm support --- install.zsh | 1 + wez/.config/wezterm/wezterm.lua | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 wez/.config/wezterm/wezterm.lua diff --git a/install.zsh b/install.zsh index 3dd5cd6..d07e3b4 100755 --- a/install.zsh +++ b/install.zsh @@ -30,3 +30,4 @@ stow --dotfiles -t ~ zsh stow --dotfiles -t ~ ruby stow --dotfiles -t ~ nvim stow --dotfiles -t ~ tmux +stow --dotfiles -t ~ wez diff --git a/wez/.config/wezterm/wezterm.lua b/wez/.config/wezterm/wezterm.lua new file mode 100644 index 0000000..2b7f043 --- /dev/null +++ b/wez/.config/wezterm/wezterm.lua @@ -0,0 +1,7 @@ +local wezterm = require('wezterm') +local config = wezterm.config_builder() +config.color_scheme = "Catppuccin Mocha" +config.font = wezterm.font('FiraCode Nerd Font Mono') +config.font_size = 16 + +return config