فهرست منبع

Merge branch 'master' of https://io.monkeybox.org/git/fdamstra/MyEnvironment

Fred Damstra 6 سال پیش
والد
کامیت
68024519cd
1فایلهای تغییر یافته به همراه11 افزوده شده و 0 حذف شده
  1. 11 0
      .bashrc

+ 11 - 0
.bashrc

@@ -130,6 +130,9 @@ fi
 # Add autocompletion for git
 source ~/.bash/git-completion.bash
 
+# Gitrob token
+[ -f ~/.git_token ] && source ~/.git_token
+
 # Add autocompletion for aws
 [ -x /usr/local/bin/aws_completer ] && complete -C '/usr/local/bin/aws_completer' aws
 
@@ -151,6 +154,14 @@ export ANSIBLE_HOST_KEY_CHECKING=False
 
 [[ $(type -P fortune) ]] && [[ $(type -P cowsay) ]] && [[ $(type -P lolcat) ]] && fortune | cowsay | lolcat
 
+# tabtab source for serverless package
+# uninstall by removing these lines or running `tabtab uninstall serverless`
+[ -f /usr/local/lib/node_modules/serverless/node_modules/tabtab/.completions/serverless.bash ] && . /usr/local/lib/node_modules/serverless/node_modules/tabtab/.completions/serverless.bash
+
+# tabtab source for sls package
+# uninstall by removing these lines or running `tabtab uninstall sls`
+[ -f /usr/local/lib/node_modules/serverless/node_modules/tabtab/.completions/sls.bash ] && . /usr/local/lib/node_modules/serverless/node_modules/tabtab/.completions/sls.bash
+
 # Python venv?
 if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi