update zhsenv

This commit is contained in:
Johannes Knopp
2026-04-17 14:34:55 +02:00
parent 6efa5d599c
commit 5aec12cd1f
3 changed files with 12 additions and 0 deletions

View File

@ -20,6 +20,10 @@ keymap.set('n', 'j', 'gj', opts)
keymap.set('n', '<UP>', 'gk', opts)
keymap.set('n', '<DOWN>', 'gj', opts)
-- bind tabswitching to Tab and Shift-Tab
keymap.set('n', '<Tab>', ':tabnext<CR>', opts)
keymap.set('n', '<S-Tab>', ':tabprev<CR>', opts)
-- COMMANDS
-- print current working directory

View File

@ -1 +1,8 @@
export PATH="/home/johannes/.local/bin:$PATH"
# pnpm
export PNPM_HOME="$HOME/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end

View File

@ -55,3 +55,4 @@ bindkey '^H' backward-kill-word
bindkey '^R' fzf-history-widget
eval "$(zoxide init zsh)"