Compare commits
3 commits
7383759af6
...
c558a2ba17
Author | SHA1 | Date | |
---|---|---|---|
c558a2ba17 | |||
96265b99ab | |||
d878e6353c |
5 changed files with 8 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -10,3 +10,4 @@ vim/.config/vim/undo
|
||||||
zsh/.config/zsh/.zcompdump
|
zsh/.config/zsh/.zcompdump
|
||||||
zsh/.config/zsh/.zsh_history
|
zsh/.config/zsh/.zsh_history
|
||||||
zsh/.config/zsh/.zsh_sessions
|
zsh/.config/zsh/.zsh_sessions
|
||||||
|
zsh/.config/zsh/sources
|
||||||
|
|
|
@ -132,10 +132,10 @@ install_darwin() {
|
||||||
install_shared_applications
|
install_shared_applications
|
||||||
|
|
||||||
softwareupdate --install-rosetta --agree-to-license
|
softwareupdate --install-rosetta --agree-to-license
|
||||||
brew install coreutils gnu-sed session-manager-plugin
|
brew install coreutils gnu-sed session-manager-plugin orbstack
|
||||||
|
|
||||||
# gui
|
# 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
|
discord element brave-browser zoom notion
|
||||||
|
|
||||||
install_tmux_terminfo
|
install_tmux_terminfo
|
||||||
|
|
|
@ -5,6 +5,10 @@ typeset -U PATH
|
||||||
source $ZDOTDIR/aliases
|
source $ZDOTDIR/aliases
|
||||||
source $ZDOTDIR/functions
|
source $ZDOTDIR/functions
|
||||||
|
|
||||||
|
for source in $(ls $ZDOTDIR/sources); do
|
||||||
|
source $ZDOTDIR/sources/$source
|
||||||
|
done
|
||||||
|
|
||||||
source $ZDOTDIR/prompt
|
source $ZDOTDIR/prompt
|
||||||
|
|
||||||
# Larger history
|
# Larger history
|
||||||
|
|
|
@ -20,7 +20,7 @@ function ag-count {
|
||||||
|
|
||||||
function aws-profile {
|
function aws-profile {
|
||||||
if [ $# -eq 0 ]; then
|
if [ $# -eq 0 ]; then
|
||||||
echo Current AWS Profile: $AWS_DEFAULT_PROFILE
|
echo Current AWS Profile: $AWS_PROFILE
|
||||||
else
|
else
|
||||||
export AWS_DEFAULT_PROFILE=$1
|
export AWS_DEFAULT_PROFILE=$1
|
||||||
export AWS_PROFILE=$1
|
export AWS_PROFILE=$1
|
||||||
|
|
0
zsh/.config/zsh/sources/.gitinclude
Normal file
0
zsh/.config/zsh/sources/.gitinclude
Normal file
Loading…
Add table
Reference in a new issue