refactor(zsh): shellcheck doesn't like me

This commit is contained in:
George Rawlinson 2018-08-06 19:13:15 +12:00
parent 8ccaaf588f
commit e9cef7f41b
3 changed files with 5 additions and 3 deletions

View File

@ -11,4 +11,5 @@ PATH="$NPM_CONFIG_PREFIX/bin:$PATH"
# Unset manpath so we can inherit from /etc/manpath via the `manpath` command
unset MANPATH # delete if you already modified MANPATH elsewhere in your config
export MANPATH="$NPM_CONFIG_PREFIX/share/man:$(manpath)"
MANPATH="$NPM_CONFIG_PREFIX/share/man:$(manpath)"
export MANPATH

View File

@ -1,2 +1,3 @@
# Add rubygem binary directory to $PATH
export PATH="$PATH:$(ruby -e "puts Gem.user_dir")/bin"
PATH="$PATH:$(ruby -e "puts Gem.user_dir")/bin"
export PATH

View File

@ -4,5 +4,5 @@ alias tmux='tmux -f ~/.config/tmux/tmux.conf'
# Connect to remote tmux session via SSH
ssh-tmux(){
ssh -t $@ "tmux attach || tmux new";
ssh -t "$@" "tmux attach || tmux new";
}