aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2011-12-13 01:51:28 +1300
committerTom Ryder <tom@sanctum.geek.nz>2011-12-13 01:51:28 +1300
commit51609a362afdee1b6b49aaaaece3cfe1e459c920 (patch)
tree0175d8362ac14d1ea3a61906c92312bf8d907c74 /bash/bashrc
parentNot using submodules anymore. (diff)
downloaddotfiles-51609a362afdee1b6b49aaaaece3cfe1e459c920.tar.gz
dotfiles-51609a362afdee1b6b49aaaaece3cfe1e459c920.zip
Versioning bash is just a bad idea I think.
Diffstat (limited to 'bash/bashrc')
-rw-r--r--bash/bashrc44
1 files changed, 0 insertions, 44 deletions
diff --git a/bash/bashrc b/bash/bashrc
deleted file mode 100644
index 29a08a0c..00000000
--- a/bash/bashrc
+++ /dev/null
@@ -1,44 +0,0 @@
-# Only if interactive
-[ -z "$PS1" ] && return
-
-# Append to history, no duplicate lines
-shopt -s histappend
-HISTCONTROL=ignoreboth
-
-# Recheck window size after each command
-shopt -s checkwinsize
-
-# Current root/chroot
-if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
- debian_chroot=$(cat /etc/debian_chroot)
-fi
-
-# Set xterm title
-case "$TERM" in
-xterm*|rxvt*)
- PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
- ;;
-*)
- ;;
-esac
-
-# Set xterm colors
-case "$TERM" in
-xterm*)
- TERM=xterm-256color
- export TERM
- ;;
-*)
- ;;
-esac
-
-# Aliases
-if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
-fi
-
-# Auto completion
-if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
- . /etc/bash_completion
-fi
-