26 lines
474 B
Bash
Executable File
26 lines
474 B
Bash
Executable File
#########################
|
|
### .bashrc from Marc ###
|
|
#########################
|
|
|
|
# command line
|
|
export PS1="\[\033[0;32m\]\u\[\033[m\]@\h: \[\033[1;34m\]\w\[\033[m\] \n> "
|
|
|
|
# colored files
|
|
LS_COLORS=$LS_COLORS:'di=1;32:'
|
|
export LS_COLORS
|
|
|
|
# dotfile management
|
|
alias dotdrop="~/dotfiles/dotdrop.sh --cfg=~/dotfiles/config.yaml"
|
|
|
|
# shortcuts
|
|
alias ..="cd .."
|
|
alias ll="ls -l"
|
|
alias la="ls -la"
|
|
|
|
# Source global definitions
|
|
if [ -f /etc/bashrc ]; then
|
|
. /etc/bashrc
|
|
fi
|
|
|
|
|