-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
27 lines (21 loc) · 669 Bytes
/
Copy path.zshrc
File metadata and controls
27 lines (21 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# fix set -o
DISABLE_MAGIC_FUNCTIONS=true
EDITOR=vim
PATH=$PATH:$HOME/development/bin
# to support mulpile nodejs versions
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# useful in termnal to move between words
bindkey -e
# alt+h to move word back
bindkey "^[h" backward-word
# alt+l to move word forward
bindkey "^[l" forward-word
source $HOME/development/aliases.env
source $HOME/.profile
bindkey -e
# alt+h to move word back
bindkey "^[h" backward-word
# alt+l to move word forward
bindkey "^[l" forward-word