-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate bash-it specific loading of capi config
* Add a "lib" directory. This is intended to only store (but not configure) capi aliases & environment-variables & scripts * Load all the lib suff in a bash-it plugin to not break existing workstations
- Loading branch information
Aakash Shah
committed
Jul 8, 2020
1 parent
eee1889
commit 4c0f1bd
Showing
9 changed files
with
37 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# shell prompt settings | ||
export HISTTIMEFORMAT="%F %T " | ||
export THEME_CLOCK_CHAR="⛅️ " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
alias vim=nvim | ||
|
||
# fasd | ||
alias v='fasd -e vim' | ||
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh | ||
|
||
# ruby | ||
alias b='bundle exec' | ||
alias bake='echo "bundling..." && bundle install --quiet && echo "done bundling" && bundle exec rake' | ||
alias pgbake='echo "bundling..." && bundle install --quiet && echo "done bundling" && DB=postgres bundle exec rake' | ||
alias mybake='echo "bundling..." && bundle install --quiet && echo "done bundling" && DB=mysql bundle exec rake' | ||
|
||
# k8s | ||
alias k=kubectl | ||
|
||
# Git aliases | ||
alias gd='git diff' | ||
alias gdc='git diff --cached' | ||
alias gst='git status' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.