19 lines
408 B
Bash
19 lines
408 B
Bash
# .bashrc
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
alias ls='ls --color=auto'
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
|
|
#alias tux="/home/mollusk/gitlab/tux/tux.rb"
|
|
|
|
github="https://github.com/silvernode"
|
|
gitlab="https://gitlab.com/silvernode"
|
|
|
|
alias gitlog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)
|
|
%C(bold blue)<%an>%Creset' --abbrev-commit"
|
|
|
|
|