mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 09:56:39 +00:00
Update init scripts
This commit is contained in:
10
init.tcsh
10
init.tcsh
@@ -1,13 +1,15 @@
|
||||
# Set tmuxifier root path.
|
||||
# Set Tmuxifier root path if needed.
|
||||
if ( ! $?TMUXIFIER ) then
|
||||
setenv TMUXIFIER "${HOME}/.tmuxifier"
|
||||
endif
|
||||
|
||||
# Add `bin` directroy to `$PATH`.
|
||||
set path = ( $TMUXIFIER/bin $path )
|
||||
# Add `bin` directroy to `$path` if needed.
|
||||
if ( " $path " =~ "* $TMUXIFIER/bin *" ) then
|
||||
set path = ( $TMUXIFIER/bin $path )
|
||||
endif
|
||||
|
||||
# If `tmuxifier` is available, and `$TMUXIFIER_NO_COMPLETE` is not set, then
|
||||
# load tmuxifier shell completion.
|
||||
# load Tmuxifier shell completion.
|
||||
if ( ! $?TMUXIFIER_NO_COMPLETE ) then
|
||||
which tmuxifier > /dev/null && source "$TMUXIFIER/completion/tmuxifier.tcsh"
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user