diff options
| author | Ben Beltran <ben@freshout.us> | 2013-08-08 08:15:51 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@freshout.us> | 2013-08-08 08:15:51 -0500 |
| commit | 5813c6344b37a6f20424be0f1c30d9513a1dfded (patch) | |
| tree | ab22d7bd34dd00551786be2f189b00d5a07a65d2 | |
| parent | a0015300d278fd4ac0f82b0b4d024fa7b223e4c3 (diff) | |
Updates tmux 4 vimbindings, and zshrc 4 node bins
| -rw-r--r-- | tmux.conf | 4 | ||||
| -rw-r--r-- | zshrc | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -35,6 +35,10 @@ set -g visual-activity on # Vi keys in copy mode. setw -g mode-keys vi +bind -r k run-shell 'tmux select-pane -U' +bind -r j run-shell 'tmux select-pane -D' +bind -r h run-shell 'tmux select-pane -L' +bind -r l run-shell 'tmux select-pane -R' # Set color mode. set -g default-terminal "screen-256color" @@ -34,7 +34,7 @@ source $ZSH/oh-my-zsh.sh export TERM=screen-256color export JAVA_HOME=$(/usr/libexec/java_home) -export PATH=/Users/benbeltran/Projects/nitrogen/bin:/usr/local/bin:/usr/local/sbin:$PATH +export PATH=/usr/local/share/npm/bin:/Users/benbeltran/Projects/nitrogen/bin:/usr/local/bin:/usr/local/sbin:$PATH export NODE_PATH=/usr/local/lib/node_modules:$NODE_PATH export PYTONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH export PS1="$PS1"'$([ -n "$TMUX" ] && tmux setenv TMUXPWD_$(tmux display -p "#I_#P") "$PWD")' |