Compare commits

..

3 commits

5 changed files with 8 additions and 3 deletions

1
.gitignore vendored
View file

@ -10,3 +10,4 @@ vim/.config/vim/undo
zsh/.config/zsh/.zcompdump
zsh/.config/zsh/.zsh_history
zsh/.config/zsh/.zsh_sessions
zsh/.config/zsh/sources

View file

@ -132,10 +132,10 @@ install_darwin() {
install_shared_applications
softwareupdate --install-rosetta --agree-to-license
brew install coreutils gnu-sed session-manager-plugin
brew install coreutils gnu-sed session-manager-plugin orbstack
# gui
brew install --cask docker rectangle slack google-chrome alacritty telegram \
brew install --cask rectangle slack google-chrome alacritty telegram \
discord element brave-browser zoom notion
install_tmux_terminfo

View file

@ -5,6 +5,10 @@ typeset -U PATH
source $ZDOTDIR/aliases
source $ZDOTDIR/functions
for source in $(ls $ZDOTDIR/sources); do
source $ZDOTDIR/sources/$source
done
source $ZDOTDIR/prompt
# Larger history

View file

@ -20,7 +20,7 @@ function ag-count {
function aws-profile {
if [ $# -eq 0 ]; then
echo Current AWS Profile: $AWS_DEFAULT_PROFILE
echo Current AWS Profile: $AWS_PROFILE
else
export AWS_DEFAULT_PROFILE=$1
export AWS_PROFILE=$1

View file