47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
# If not running interactively, don't do anything
|
|
[ -z "$PS1" ] && return
|
|
|
|
# check the window size after each command and, if necessary,
|
|
# update the values of LINES and COLUMNS.
|
|
shopt -s checkwinsize
|
|
|
|
# If set, the pattern "**" used in a pathname expansion context will
|
|
# match all files and zero or more directories and subdirectories.
|
|
shopt -s globstar
|
|
|
|
# append to the history file, don't overwrite it
|
|
shopt -s histappend
|
|
|
|
# don't put duplicate lines or lines starting with space in the history.
|
|
# See bash(1) for more options
|
|
HISTCONTROL=ignoreboth
|
|
|
|
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
|
HISTSIZE=99999999
|
|
HISTFILESIZE=99999999
|
|
|
|
# make less more friendly for non-text input files, see lesspipe(1)
|
|
if [ -x /usr/bin/lesspipe ]; then eval "$(lesspipe)"; fi
|
|
|
|
# Homeshick
|
|
source ~/.homesick/repos/homeshick/homeshick.sh
|
|
source ~/.homesick/repos/homeshick/completions/homeshick-completion.bash
|
|
|
|
source ~/.bash_env
|
|
source ~/.bash_prompt
|
|
source ~/.bash_completion
|
|
source ~/.bash_aliases
|
|
|
|
# enable color support of ls and also add handy aliases
|
|
if hash dircolors 2>/dev/null; then
|
|
if [ -r ~/.dircolors ]; then
|
|
eval "$(dircolors -b ~/.dircolors)"
|
|
else
|
|
eval "$(dircolors -b)"
|
|
fi
|
|
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
alias fgrep='fgrep --color=auto'
|
|
alias egrep='egrep --color=auto'
|
|
fi
|