From 9ab1bed56a9568e1950676f07b2d69fc8f22bf15 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sun, 2 Nov 2025 16:03:56 -0500 Subject: [PATCH] feat: Adds neomutt alias that set's TERM to xterm-direct for color scheme to work properly. --- env/.config/hypr/env.conf | 1 - env/.config/zsh/.zshrc | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/env/.config/hypr/env.conf b/env/.config/hypr/env.conf index 4278170..5ee9d6b 100644 --- a/env/.config/hypr/env.conf +++ b/env/.config/hypr/env.conf @@ -19,7 +19,6 @@ env = OZONE_PLATFORM,wayland env = XDG_SESSION_TYPE,wayland env = GDK_SCALE,2 -env = GDK_DPI_SCALE,0.5 # Allow better support for screen sharing (Google Meet, Discord, etc) env = XDG_CURRENT_DESKTOP,Hyprland diff --git a/env/.config/zsh/.zshrc b/env/.config/zsh/.zshrc index 9afa65e..78f0d7d 100755 --- a/env/.config/zsh/.zshrc +++ b/env/.config/zsh/.zshrc @@ -200,6 +200,7 @@ alias tls='tmux list-sessions' # list tmux sessions alias tks='tmux kill-session -t' # kill tmux session alias temp='cd $(mktemp -d)' # create a temporary directory and move into it. alias vi='nvim' # set vi to open neovim +alias neomutt='TERM=xterm-direct neomutt' # Allows neomutt colors to work properly. alias newf='"$SCRIPTS"/newx --function' # generate a new shell function alias nlnv='nvim "$LOCAL_ENV"' # open local environment overrides file in neovime alias nvim='unset VIMINIT && unset MYVIMRC && nvim' # alias nvim to unset vimrc, useful when using both vim & neovim