From 80952e50f05403e140097bab9c1c902101e6c27c Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Mon, 23 Mar 2026 17:14:47 -0400 Subject: feat: pv in Emacs and no more tmux in zsh SPACE-pv keybind now opens dired in Emacs. As well, Tmux is no longer started in .zshrc. --- .config/shells/zsh/.zshrc | 6 +++--- .emacs.d/init.el | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.config/shells/zsh/.zshrc b/.config/shells/zsh/.zshrc index 652d12f..aaeb7c7 100644 --- a/.config/shells/zsh/.zshrc +++ b/.config/shells/zsh/.zshrc @@ -1,6 +1,6 @@ -if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then - exec tmux -fi +# if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then +# exec tmux +# fi source ~/.zprofile export SHELLDIR="$XDG_CONFIG_HOME/shells" diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 492f905..e5ceb92 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -69,6 +69,7 @@ (define-key evil-normal-state-map (kbd "\"") 'split-window-below) (define-key evil-normal-state-map (kbd "t") 'vterm) (define-key evil-normal-state-map (kbd "ff") 'find-file) +(define-key evil-normal-state-map (kbd "pv") 'dired) (define-key evil-normal-state-map (kbd "C-l") 'windmove-right) (define-key evil-normal-state-map (kbd "C-h") 'windmove-left) (define-key evil-normal-state-map (kbd "C-j") 'windmove-down) -- cgit v1.2.3