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.
|
2018-01-22 01:29:48 +00:00
|
|
|
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)\]"
|
|
|
|
|
2019-02-19 18:13:05 +00:00
|
|
|
[ -f "$HOME/.config/shortcutrc" ] && source "$HOME/.config/shortcutrc" # Load shortcut aliases
|
|
|
|
[ -f "$HOME/.config/aliasrc" ] && source "$HOME/.config/aliasrc"
|