Skip to content

Commit

Permalink
v0.2.115: Loading Dotfiles and added new clear screen and scroll-back…
Browse files Browse the repository at this point in the history
… alias
  • Loading branch information
Release Bot committed Mar 23, 2018
1 parent d2b7cf4 commit 2133044
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bash/.bash_aliases
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ alias r='reload'
alias repairperms='sudo /usr/libexec/repair_packages --repair --standard-pkgs --volume /'
alias xcode='open -a xcode'


# ---------------------------------------------------------------------------
# 3. Quicker navigation
# ---------------------------------------------------------------------------
Expand Down Expand Up @@ -164,6 +163,7 @@ alias ione-ios-iPad-Retina="ionic emulate ios --target='iPad-Retina'"
# 8. Git SCM Cheats
# ---------------------------------------------------------------------------

alias clear="printf '\33c\e[3J'"
alias c='clear'
alias flush="sudo dscacheutil -flushcache"
alias g=git
Expand Down
16 changes: 15 additions & 1 deletion bash/.bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,18 @@ if [[ -f ~/.bash_load_completion ]]; then
# File may not exist, so don't follow for shellcheck linting (SC1090).
# shellcheck source=/dev/null
source "$HOME/.bash_load_completion"
fi
fi

# Source the .bash_functions file.
if [[ -f ~/.bash_functions ]]; then
# File may not exist, so don't follow for shellcheck linting (SC1090).
# shellcheck source=/dev/null
source "$HOME/.bash_functions"
fi

# Source the .bash_exit file.
if [[ -f ~/.bash_exit ]]; then
# File may not exist, so don't follow for shellcheck linting (SC1090).
# shellcheck source=/dev/null
source "$HOME/.bash_exit"
fi
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reedia-dotfiles",
"version": "0.2.113",
"version": "0.2.115",
"description": "Dotfiles - A set of Mac OS X configuration files - Simply designed to fit your shell life.",
"keywords": [
"dotfiles",
Expand Down

0 comments on commit 2133044

Please sign in to comment.