refactor(zsh): shellcheck doesn't like me
This commit is contained in:
parent
8ccaaf588f
commit
e9cef7f41b
3 changed files with 5 additions and 3 deletions
|
@ -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 so we can inherit from /etc/manpath via the `manpath` command
|
||||||
unset MANPATH # delete if you already modified MANPATH elsewhere in your config
|
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
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
# Add rubygem binary directory to $PATH
|
# 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
|
||||||
|
|
|
@ -4,5 +4,5 @@ alias tmux='tmux -f ~/.config/tmux/tmux.conf'
|
||||||
|
|
||||||
# Connect to remote tmux session via SSH
|
# Connect to remote tmux session via SSH
|
||||||
ssh-tmux(){
|
ssh-tmux(){
|
||||||
ssh -t $@ "tmux attach || tmux new";
|
ssh -t "$@" "tmux attach || tmux new";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue