update zhsenv
This commit is contained in:
@ -20,6 +20,10 @@ keymap.set('n', 'j', 'gj', opts)
|
|||||||
keymap.set('n', '<UP>', 'gk', opts)
|
keymap.set('n', '<UP>', 'gk', opts)
|
||||||
keymap.set('n', '<DOWN>', 'gj', 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
|
-- COMMANDS
|
||||||
|
|
||||||
-- print current working directory
|
-- print current working directory
|
||||||
|
|||||||
@ -1 +1,8 @@
|
|||||||
export PATH="/home/johannes/.local/bin:$PATH"
|
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
|
||||||
|
|||||||
@ -55,3 +55,4 @@ bindkey '^H' backward-kill-word
|
|||||||
bindkey '^R' fzf-history-widget
|
bindkey '^R' fzf-history-widget
|
||||||
|
|
||||||
eval "$(zoxide init zsh)"
|
eval "$(zoxide init zsh)"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user