From be83fd4938dabfb4eb1bee6ded10365c202c7112 Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Wed, 17 Jan 2018 22:48:06 -0500 Subject: Inital Commit --- bash/.bashrc | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 bash/.bashrc (limited to 'bash') diff --git a/bash/.bashrc b/bash/.bashrc new file mode 100644 index 0000000..952dfd8 --- /dev/null +++ b/bash/.bashrc @@ -0,0 +1,23 @@ +# .bashrc +set -o vi + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +alias ll='ls -la' +alias school='cd /home/tje/Documents/landmark' +alias embed='school && cd CS2771' +alias os='school && cd CS3871' +alias web='school && cd CSC2621' +alias mobile='school && cd CSC2636' +alias pol='school && cd POL1011' +alias art='school && cd HIS1031' + +alias xcopy='xclip -selection clipboard' +alias xpaste='xclip -selection clipboard -o' + +PS1='[\u@\h \W]\$ ' + +MAIL=/var/spool/mail/tje && export MAIL +export EDITOR=vi -- cgit v1.1