20 lines
559 B
Bash
20 lines
559 B
Bash
# ~/.bashrc: executed by bash(1) for non-login shells.
|
|
|
|
# You may uncomment the following lines if you want `ls' to be colorized:
|
|
# export LS_OPTIONS='--color=auto'
|
|
# eval "$(dircolors)"
|
|
alias ls='ls $LS_OPTIONS'
|
|
alias ll='ls $LS_OPTIONS -l'
|
|
alias l='ls $LS_OPTIONS -lA'
|
|
#
|
|
# Alias definitions.
|
|
# You may want to put all your additions into a separate file like
|
|
# ~/.bash_aliases, instead of adding them here directly.
|
|
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
|
|
|
if [ -f ~/.bash_aliases ]; then
|
|
. ~/.bash_aliases
|
|
fi
|
|
|
|
export EDITOR=vim
|