💾 Archived View for ait.place › dot › bash › dot-bashrc.txt captured on 2022-01-08 at 14:23:34.
⬅️ Previous capture (2021-12-03)
-=-=-=-=-=-=-
#!/bin/bash shopt -s autocd #Allows you to cd into directory merely by typing the directory name. #HISTSIZE= HISTFILESIZE= # Infinite history. export PS1="\W \\$ " PROMPT_COMMAND='echo -ne "\033]0;$PWD\007"' [ -f "$HOME/.config/shortcutrc" ] && source "$HOME/.config/shortcutrc" [ -f "$HOME/.config/aliasrc" ] && source "$HOME/.config/aliasrc"