summaryrefslogtreecommitdiff
path: root/config/bashrc
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2026-07-08 09:56:36 -0700
committerThomas Ulmer <thomasmulmer02@gmail.com>2026-07-08 09:56:36 -0700
commit19bc81f77b82b70e27ad03aeb41de9a4e507bcce (patch)
tree26d13367f90efadca2780be445204aa5ae89b203 /config/bashrc
parent8e8e5241e96dc1bec3d897f514b77553da033529 (diff)
merge profile, make sh generic to allow ksh
Diffstat (limited to 'config/bashrc')
-rw-r--r--config/bashrc69
1 files changed, 0 insertions, 69 deletions
diff --git a/config/bashrc b/config/bashrc
deleted file mode 100644
index 8755bbf..0000000
--- a/config/bashrc
+++ /dev/null
@@ -1,69 +0,0 @@
-# If not running interactively, don't do anything
-case $- in
- *i*) ;;
- *) return;;
-esac
-
-# don't put duplicate lines or lines starting with space in the history.
-# See bash(1) for more options
-HISTCONTROL=ignoreboth
-
-# append to the history file, don't overwrite it
-shopt -s histappend
-
-# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
-HISTSIZE=1000
-HISTFILESIZE=2000
-
-# check the window size after each command and, if necessary,
-# update the values of LINES and COLUMNS.
-shopt -s checkwinsize
-
-# If set, the pattern "**" used in a pathname expansion context will
-# match all files and zero or more directories and subdirectories.
-shopt -s globstar
-
-# set a fancy prompt (non-color, unless we know we "want" color)
-case "$TERM" in
- xterm-color|*-256color) color_prompt=yes;;
-esac
-
-if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
- # We have color support; assume it's compliant with Ecma-48
- # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
- # a case would tend to support setf rather than setaf.)
- color_prompt=yes
-else
- color_prompt=
-fi
-
-if [ "$color_prompt" = yes ]; then
- PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
-else
- PS1='\u@\h:\w\$ '
-fi
-unset color_prompt
-
-# If this is an xterm set the title to user@host:dir
-case "$TERM" in
- xterm*|rxvt*|st*|alacritty*)
- PS1="\[\e]0;\u@\h: \w\a\]$PS1"
- ;;
- *)
- ;;
-esac
-
-[ -n "$EAT_SHELL_INTEGRATION_DIR" ] && \
- source "$EAT_SHELL_INTEGRATION_DIR/bash"
-
-export ALTERNATE_EDITOR=emacs
-export EDITOR="emacsclient -c"
-export VISUAL="emacsclient -c"
-export MORE="FRX"
-export LESS="FRX"
-export PAGER=$(which less || which more || echo "cat")
-export EXINIT="set ai ic sw=4 ts=4 nofl magic"
-
-if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
-fi