-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_bash_profile
More file actions
36 lines (29 loc) · 749 Bytes
/
_bash_profile
File metadata and controls
36 lines (29 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
# Set our shell to use emacs key bindings
set -o emacs
### Aliases!
alias ll="ls -al"
alias ls="ls -F"
alias rm="rm -i"
alias gs='git status'
alias gb='git branch'
alias gp='git pull --rebase'
alias ga='git add'
alias gc='git commit'
alias gd='git diff'
alias gl='git log --stat'
alias gf='git fetch -p'
alias gg='git log --graph --decorate'
alias ggo='git log --graph --decorate --oneline'
### Path!
export PATH=.:~/bin:/usr/local/bin:/usr/local/sbin:/opt/homebrew/bin:$PATH
# Editor!
export EDITOR="subl -w"
### Terminal stuff!
PROMPT_COMMAND='echo -ne "\033]0;${PWD}\007"'
export TERM=xterm-color
export CLICOLOR="true"
export LSCOLORS="exfxcxdxbxegedabagacad"
# Github/Gist
export GITHUB_USER="braebot"
eval "$(hub alias -s)"