Compare commits

...

2 Commits

Author SHA1 Message Date
Ein Verne 7bdd954c3a feat: update pnpm home 1 month ago
Ein Verne f8ec2e2b6d feat: add tmux-urlview to config 1 month ago
  1. 10
      .zshrc
  2. 4
      tmux/.tmux.conf

10
.zshrc

@ -262,9 +262,15 @@ export HERD_PHP_81_INI_SCAN_DIR="/Users/einverne/Library/Application Support/Her
export PATH="/Users/einverne/.codeium/windsurf/bin:$PATH"
# pnpm
export PNPM_HOME="/Users/einverne/Library/pnpm"
case ":$PATH:" in
case `uname` in
Darwin)
export PNPM_HOME="/Users/einverne/Library/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
;;
esac
# pnpm end
[[ "$TERM_PROGRAM" == "kiro" ]] && . "$(kiro --locate-shell-integration-path zsh)"

4
tmux/.tmux.conf

@ -5,6 +5,7 @@ setw -g xterm-keys on
set -s escape-time 10 # faster command sequences
set -sg repeat-time 600 # increase repeat timeout
set -s focus-events on
set-option -g set-clipboard on
#unbind ^b # unbind defaul prefix Control+b
#set -g prefix 'C-\' # bind new prefix Control+a
@ -240,12 +241,13 @@ if "test ! -d ~/.tmux/plugins/tpm" \
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'tmux-plugins/tmux-copycat'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'tmux-plugins/tmux-urlview'
# Other examples:
# set -g @plugin 'github_username/plugin_name'

Loading…
Cancel
Save