From 419a2cdc2c4fe7d72a745e276e534454d53a4c6f Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Mon, 18 May 2026 18:48:49 -0400 Subject: [PATCH] General Fixes (#36) Fixed issue where when opening a second terminal it'd open in the same tmux session making it so that it's just a mirror of the first terminal. Closing that terminal would close all terminals. Also added an alias to vim which calls nvim Reviewed-on: https://git.wesirvin.com/wesley/dotfiles/pulls/36 --- wezterm/dot-wezterm.lua | 2 +- zsh/dot-zshrc | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/wezterm/dot-wezterm.lua b/wezterm/dot-wezterm.lua index 82f43b5..43090d8 100644 --- a/wezterm/dot-wezterm.lua +++ b/wezterm/dot-wezterm.lua @@ -10,6 +10,6 @@ config.enable_tab_bar = false config.initial_cols = 205 config.initial_rows = 45 config.font_size = 10 -config.default_prog = { "tmux", "new-session", "-A", "-s", "main" } +config.default_prog = { "tmux", "new-session" } return config diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index 1a4cb41..5f633b7 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -17,6 +17,9 @@ alias cat="bat" # Alias cd to z for zoxide alias cd="z" +# Alias vim to nvim +alias vim="nvim" + ############### END ALIASES ############### ############### BEGIN EXPORTS #############