# ~/.bashrc
#clear
#     _    _           ____  ____        _ _
#    / \  | | _____  _|  _ \| __ )  __ _| | |
#   / _ \ | |/ _ \ \/ / | | |  _ \ / _` | | |
#  / ___ \| |  __/>  <| |_| | |_) | (_| | | |
# /_/   \_\_|\___/_/\_\____/|____/ \__,_|_|_|
#
#	Script  : famoutin.sh
#	Author  : AlexDBall
#	Created by : AlexDBall
# 	Created on : 21-03-03
# 	Last Update On : 22-01-02

export TERM=xterm-256color

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

# Set history options
HISTCONTROL=ignoreboth
shopt -s histappend
HISTSIZE=1000
HISTFILESIZE=2000

# Check the window size after each command run
shopt -s checkwinsize

# Include the aliases
if [ -f $HOME/.bash_aliases ]; then . $HOME/.bash_aliases; fi

# Include the variables
if [ -f $HOME/.bash_variables ]; then . $HOME/.bash_variables; fi

# Run the bash completion
if [ -f /usr/share/bash-completion/bash_completion ]; then
	. /usr/share/bash-completion/bash_completion
fi
