diff options
| author | Benjamin Linskey | 2026-05-05 15:38:45 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2026-05-05 15:38:45 -0400 |
| commit | 9e2a568f74a106f9bdb1bcbe55c9ced25e0d0ae8 (patch) | |
| tree | 07f0355e9ac22bc5d115d14cea697d82708e427b | |
| parent | fd4095521d4b56d3db434f4e3e9a19f54ee94701 (diff) | |
| download | dotfiles-9e2a568f74a106f9bdb1bcbe55c9ced25e0d0ae8.tar.gz | |
Remove .bashrc
| -rw-r--r-- | .bashrc | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/.bashrc b/.bashrc deleted file mode 100644 index 89a1ac1..0000000 --- a/.bashrc +++ /dev/null @@ -1,21 +0,0 @@ -set +o history - -# Check the window size after each command and, if necessary, -# update the values of LINES and COLUMNS. -shopt -s checkwinsize - -# globstar: Available starting in Bash 4.0. -# If set, the pattern "**" used in a pathname expansion context will -# match all files and zero or more directories and subdirectories. -if [ ${BASH_VERSION:0:1} -gt 3 ]; then - shopt -s globstar -fi - -# Use vi keybindings. -set -o vi - -PS1="\h:\w\\$ " - -if [ -f "$HOME/.aliases" ]; then - . "$HOME/.aliases" -fi |