9e5c369133
- created jenkins file linter script - created vim script for validating jenkinsfiles - adapt all configs to use secrets - load secrets from hidden file + vim script - tune vim (plugins - icons/fonts/features...) - new aliases (music, jira, git, ...)
17 lines
503 B
Plaintext
17 lines
503 B
Plaintext
|
|
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
|
|
export PATH="$PATH:$HOME/.rvm/bin"
|
|
|
|
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
|
|
|
export PROXY_HOST=""
|
|
export JETBRAINS_LICENSE_SERVER=""
|
|
|
|
if test -f "$HOME/.secrets"; then
|
|
chmod +x "$HOME/.secrets"
|
|
source "$HOME/.secrets"
|
|
alias proxy='ssh -D 8000 -N $(whoami)@$PROXY_HOST -i ~/.ssh/id_ed25519'
|
|
fi
|
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|