2022-10-28 01:41:26 -07: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-21 20:00:41 -08:00
|
|
|
# Detect support for advanced terminal features
|
|
|
|
if [ "$0" = 'bash' ] || [ "$0" = '/bin/bash' ]; then
|
|
|
|
export BASH_SUPPORT=true
|
|
|
|
fi
|
|
|
|
|
2022-09-30 06:38:08 -07:00
|
|
|
chmod +x ~/.local/bin/*
|
|
|
|
|
2022-11-02 12:34:15 -07: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 06:36:17 -07:00
|
|
|
if [ -e install-terminal-theme ]; then
|
|
|
|
install-terminal-theme > /dev/null
|
|
|
|
fi
|
|
|
|
|
2022-10-23 20:53:26 -07:00
|
|
|
if [ -e dotfile-system-prune ]; then
|
|
|
|
dotfile-system-prune > /dev/null
|
|
|
|
fi
|
|
|
|
|
2022-09-02 16:15:45 -07:00
|
|
|
. "$HOME/.bashrc"
|