From 19bc81f77b82b70e27ad03aeb41de9a4e507bcce Mon Sep 17 00:00:00 2001 From: Thomas Ulmer Date: Wed, 8 Jul 2026 09:56:36 -0700 Subject: merge profile, make sh generic to allow ksh --- config/bashrc | 69 ----------------------------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 config/bashrc (limited to 'config/bashrc') 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 -- cgit v1.2.3