2022-10-28 08:41:26 +00:00
|
|
|
# Prefer US English
|
|
|
|
export LANG="en_US"
|
|
|
|
|
Update dotfiles/.local/share/chezmoi/private_dot_config/Brewfile.tmpl, dotfiles/.local/share/chezmoi/private_dot_config/fd/ignore, dotfiles/.local/share/chezmoi/private_dot_config/git/ignore, dotfiles/.local/share/chezmoi/private_dot_config/git/config.tmpl, dotfiles/.local/share/chezmoi/private_dot_config/k9s/plugin.yml, dotfiles/.local/share/chezmoi/private_dot_config/shell/aliases, dotfiles/.local/share/chezmoi/private_dot_config/shell/functions, dotfiles/.local/share/chezmoi/private_dot_config/shell/exports.sh, dotfiles/.local/share/chezmoi/private_dot_config/asdf/default-npm-packages, dotfiles/.profile, dotfiles/.local/share/chezmoi/private_dot_config/shell/motd, dotfiles/.bash_profile, dotfiles/.bashrc, dotfiles/.zshrc, dotfiles/.local/share/chezmoi/private_dot_config/ripgrep/config, dotfiles/.local/share/chezmoi/private_dot_config/readline/inputrc, dotfiles/.local/share/chezmoi/private_dot_config/pg/.gitkeep, dotfiles/.local/share/chezmoi/private_dot_config/putty/.gitkeep, dotfiles/.npmrc, dotfiles/.local/share/chezmoi/private_dot_config/npm/npmrc.tmpl, dotfiles/.local/share/chezmoi/dot_local/state/bash/.gitkeep, dotfiles/.local/share/chezmoi/dot_vim/vimrc, dotfiles/.local/share/chezmoi/dot_profile.tmpl
2022-11-22 04:00:41 +00:00
|
|
|
# Detect support for advanced terminal features
|
|
|
|
if [ "$0" = 'bash' ] || [ "$0" = '/bin/bash' ]; then
|
|
|
|
export BASH_SUPPORT=true
|
|
|
|
fi
|
|
|
|
|
2022-09-30 13:38:08 +00:00
|
|
|
chmod +x ~/.local/bin/*
|
|
|
|
|
2022-11-02 19:34:15 +00:00
|
|
|
### Clean Up
|
|
|
|
# Too many dotfiles are stressful :|
|
|
|
|
if [ -d /usr/local/src/professor-dotfiles ]; then
|
|
|
|
if [ -f ~/.gtkrc-2.0-kde4 ]; then
|
|
|
|
mkdir -p ~/.config > /dev/null
|
|
|
|
mv -f ~/.gtkrc-2.0-kde4 ~/.config/gtkrc-2.0-kde4.bak > /dev/null
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-09-30 13:36:17 +00:00
|
|
|
if [ -e install-terminal-theme ]; then
|
|
|
|
install-terminal-theme > /dev/null
|
|
|
|
fi
|
|
|
|
|
2022-10-24 03:53:26 +00:00
|
|
|
if [ -e dotfile-system-prune ]; then
|
|
|
|
dotfile-system-prune > /dev/null
|
|
|
|
fi
|
|
|
|
|
2022-09-02 23:15:45 +00:00
|
|
|
. "$HOME/.bashrc"
|