voidrice/.bashrc

9 lines
506 B
Bash
Raw Normal View History

2018-12-03 22:48:36 +00:00
#!/bin/bash
2018-10-01 15:08:10 +00:00
stty -ixon # Disable ctrl-s and ctrl-q.
shopt -s autocd #Allows you to cd into directory merely by typing the directory name.
2018-10-01 15:08:10 +00:00
HISTSIZE= HISTFILESIZE= # Infinite history.
2018-12-23 00:26:02 +00:00
export PS1="\[$(tput bold)\]\[$(tput setaf 1)\][\[$(tput setaf 3)\]\u\[$(tput setaf 2)\]@\[$(tput setaf 4)\]\h \[$(tput setaf 5)\]\W\[$(tput setaf 1)\]]\[$(tput setaf 7)\]\\$ \[$(tput sgr0)\]"
[ -f "$HOME/.shortcuts" ] && source "$HOME/.shortcuts" # Load shortcut aliases
2019-02-02 21:13:30 +00:00
[ -f "$HOME/.aliasrc" ] && source "$HOME/.aliasrc"