From 50d7801d67e2b1e363df2552f5825ed7cf8375ef Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 1 Aug 2021 01:38:59 -0600 Subject: [PATCH] Delete more old setup files --- dotfiles/lib/login.sh | 6 ------ dotfiles/lib/login/exports.sh | 29 ----------------------------- 2 files changed, 35 deletions(-) delete mode 100644 dotfiles/lib/login.sh delete mode 100644 dotfiles/lib/login/exports.sh diff --git a/dotfiles/lib/login.sh b/dotfiles/lib/login.sh deleted file mode 100644 index 0a82b36c..00000000 --- a/dotfiles/lib/login.sh +++ /dev/null @@ -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" diff --git a/dotfiles/lib/login/exports.sh b/dotfiles/lib/login/exports.sh deleted file mode 100644 index ed20f20d..00000000 --- a/dotfiles/lib/login/exports.sh +++ /dev/null @@ -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" - -# Don’t 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