Last active
August 29, 2015 14:02
-
-
Save LutherBaker/3dc6124baf6377d8612d to your computer and use it in GitHub Desktop.
Apple Terminal
This file contains hidden or 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
txtblk='\[\e[0;30m\]' # Black - Regular | |
txtred='\[\e[0;31m\]' # Red | |
txtgrn='\[\e[0;32m\]' # Green | |
txtylw='\[\e[0;33m\]' # Yellow | |
txtblu='\[\e[0;34m\]' # Blue | |
txtpur='\[\e[0;35m\]' # Purple | |
txtcyn='\[\e[0;36m\]' # Cyan | |
txtwht='\[\e[0;37m\]' # White | |
bldblk='\[\e[1;30m\]' # Black - Bold | |
bldred='\[\e[1;31m\]' # Red | |
bldgrn='\[\e[1;32m\]' # Green | |
bldylw='\[\e[1;33m\]' # Yellow | |
bldblu='\[\e[1;34m\]' # Blue | |
bldpur='\[\e[1;35m\]' # Purple | |
bldcyn='\[\e[1;36m\]' # Cyan | |
bldwht='\[\e[1;37m\]' # White | |
unkblk='\[\e[4;30m\]' # Black - Underline | |
undred='\[\e[4;31m\]' # Red | |
undgrn='\[\e[4;32m\]' # Green | |
undylw='\[\e[4;33m\]' # Yellow | |
undblu='\[\e[4;34m\]' # Blue | |
undpur='\[\e[4;35m\]' # Purple | |
undcyn='\[\e[4;36m\]' # Cyan | |
undwht='\[\e[4;37m\]' # White | |
bakblk='\[\e[40m\]' # Black - Background | |
bakred='\[\e[41m\]' # Red | |
bakgrn='\[\e[42m\]' # Green | |
bakylw='\[\e[43m\]' # Yellow | |
bakblu='\[\e[44m\]' # Blue | |
bakpur='\[\e[45m\]' # Purple | |
bakcyn='\[\e[46m\]' # Cyan | |
bakwht='\[\e[47m\]' # White | |
txtrst='\[\e[0m\]' # Text Reset |
This file contains hidden or 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
. ~/.bash_colors | |
alias ll='ls -lG' | |
export PATH=/usr/local/bin:$PATH | |
export PATH=/Users/dev1/bin:$PATH | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion | |
export PS1=$txtred'[\W]'$txtylw'$(__git_ps1)'$txtrst' \$ ' | |
fi | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* | |
source ~/.profile |
This file contains hidden or 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
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting |
This file contains hidden or 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
filetype plugin indent on | |
syntax on | |
set hidden | |
set hls | |
set tabstop=4 | |
map <Space> <PageDown> | |
map <Backspace> <PageUp> |
This file contains hidden or 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
# System-wide .bashrc file for interactive bash(1) shells. | |
if [ -z "$PS1" ]; then | |
return | |
fi | |
PS1='\h:\W \u\$ ' | |
# Make bash check its window size after a process completes | |
shopt -s checkwinsize | |
# Tell the terminal about the working directory at each prompt. | |
if [ "$TERM_PROGRAM" == "Apple_Terminal" ] && [ -z "$INSIDE_EMACS" ]; then | |
update_terminal_cwd() { | |
# Identify the directory using a "file:" scheme URL, | |
# including the host name to disambiguate local vs. | |
# remote connections. Percent-escape spaces. | |
local SEARCH=' ' | |
local REPLACE='%20' | |
local PWD_URL="file://$HOSTNAME${PWD//$SEARCH/$REPLACE}" | |
printf '\e]7;%s\a' "$PWD_URL" | |
} | |
PROMPT_COMMAND="update_terminal_cwd; $PROMPT_COMMAND" | |
fi |
This file contains hidden or 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
$ brew install git bash-completion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment