aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2018-01-17 22:48:06 -0500
committerTucker Evans <tuckerevans24@gmail.com>2018-01-17 22:48:06 -0500
commitbe83fd4938dabfb4eb1bee6ded10365c202c7112 (patch)
tree664ef16cc5366cdab632c04a32de3bcb15e75e00 /bash
Inital Commit
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc23
1 files changed, 23 insertions, 0 deletions
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