Delete more old setup files

This commit is contained in:
Ivan Malison 2021-08-01 01:38:59 -06:00
parent 6ba2b5f1a8
commit 50d7801d67
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
2 changed files with 0 additions and 35 deletions

View File

@ -1,6 +0,0 @@
source "$HOME/.lib/shellpath.sh"
# XXX: This is duplicated from env with a different var to avoid issues with /etc/profile
command_exists python && setup_unless_environment_variable_exists LOGIN_PATH_SETUP_DONE _setup_path
source_directory_files "$HOME/.lib/login"

View File

@ -1,29 +0,0 @@
export HISTTIMEFORMAT='%F %T '
export PAGER='less -XFr'
export GITPAGER='less -XFr'
# Larger bash history (allow 32³ entries; default is 500)
export HISTSIZE=32768
export HISTFILESIZE=10000000
export HISTCONTROL=ignoredups
# Make some commands not show up in history
export HISTIGNORE="ls:cd:cd -:pwd:exit:date:* --help"
# Prefer US English and use UTF-8
export LANG="en_US"
export LC_ALL="en_US.UTF-8"
# Highlight section titles in manual pages
export LESS_TERMCAP_md="$ORANGE"
# Dont clear the screen after quitting a manual page
export MANPAGER="less -X"
dircolors_file="$HOME/.dircolors"
[ ! -z "$SHELL" ] && test -r $dircolors_files && eval "$(dircolors $dircolors_file)" && eval $(dircolors)
if [[ $TERM == "dumb" ]]; then
export PS1='$ '
fi