Skip to content

Commit

Permalink
alias updates, fixes, new gitconfig fil
Browse files Browse the repository at this point in the history
e
  • Loading branch information
Mixolyde committed Nov 11, 2014
1 parent 25900aa commit e18a05e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 4 additions & 6 deletions bash_aliases
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# aliases I like almost everywhere
alias x=exit
alias sdr=screen -D -R
alias slist=screen -list
alias sdr='screen -D -R'
alias slist='screen -list'
alias du1='du -hs --max-depth=1'

# reload these aliases
alias ra=. ~/.bash_aliases
# reload bash scripts
alias sbash='. ~/.bashrc'

# some ls aliases
alias ls='ls --color=auto -F'
Expand All @@ -16,8 +16,6 @@ alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'



# git aliases
alias gc='git commit'
alias gpom='git push origin master'
Expand Down
4 changes: 3 additions & 1 deletion linkem
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#!/bin/bash

rm -f ~/.bashrc ~/.bashprompt ~/.dircolors ~/.bash_aliases
rm -f ~/.bashrc ~/.bashprompt ~/.dircolors ~/.bash_aliases ~/.gitconfig

ln -s ~/repos/dotfiles/bashrc ~/.bashrc
ln -s ~/repos/dotfiles/bashprompt ~/.bashprompt
ln -s ~/repos/dotfiles/bash_aliases ~/.bash_aliases
ln -s ~/repos/dotfiles/bashrc ~/.bashrc
ln -s ~/repos/dotfiles/dircolors ~/.dircolors
ln -s ~/repos/dotfiles/gitconfig ~/.gitconfig

0 comments on commit e18a05e

Please sign in to comment.