diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2018-03-07 20:55:00 -0500 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2018-03-07 20:55:00 -0500 |
commit | 9e3771d19c02892119be2140e7c8303ebd01041d (patch) | |
tree | 9695804c14701d8bd20646bab2fb9d0a4af1ac2d /bash | |
parent | 4f3b29401c7ff6b42a84b9aca53877783212ec5d (diff) | |
parent | d2caf851eac8284d134f5a440b65a492dd08039f (diff) |
Merge branch 'ursa_minor'
Diffstat (limited to 'bash')
-rw-r--r-- | bash/.bashrc | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/bash/.bashrc b/bash/.bashrc index 339a22e..1a634db 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -7,13 +7,25 @@ set -o vi [[ $- != *i* ]] && return alias ls='ls --color=auto' -alias ll='ls -la' -#alias school='cd !SCHOOL_FOLDER' +alias ll='ls -laF' alias xcopy='xclip -selection clipboard' alias xpaste='xclip -selection clipboard -o' +alias rtv='rtv --enable-media' + +alias sloc='sloccount' + PS1='[\u@\h \W]\$ ' +export GPG_TTY=$(tty) + MAIL=/var/spool/mail/tje && export MAIL -export EDITOR=vi +export EDITOR=vim + + +export IRCNICK="TropicalTea" +export IRCNAME="tje" +export IRCSERVER="chat.freenode.net" + +alias word=wordgrinder |