diff --git a/.homesick_subdir b/.homesick_subdir index b045421..ac89784 100644 --- a/.homesick_subdir +++ b/.homesick_subdir @@ -1 +1,2 @@ .ssh +.config diff --git a/home/.config/starship.toml b/home/.config/starship.toml new file mode 100644 index 0000000..26bbc72 --- /dev/null +++ b/home/.config/starship.toml @@ -0,0 +1,13 @@ +[aws] +disabled=true + +[character] +success_symbol = "[»](bold green) " +error_symbol = "[✗](bold red) " + +[directory] +fish_style_pwd_dir_length = 1 +truncation_length = 1 + +[gcloud] +disabled=true diff --git a/home/.zshrc b/home/.zshrc index 0d146c5..b1b4ae5 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -3,7 +3,7 @@ export ZSH=$HOME/.oh-my-zsh # Set to the name theme to load. # Look in ~/.oh-my-zsh/themes/ -export ZSH_THEME="walkah" +# export ZSH_THEME="walkah" # My custom directory export ZSH_CUSTOM=$HOME/.zsh/custom @@ -19,7 +19,7 @@ export ZSH_CUSTOM=$HOME/.zsh/custom # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) # Example format: plugins=(rails git textmate ruby lighthouse) -plugins=(asdf shrink-path aws gcloud extract command-not-found tmux tmuxinator git github ssh-agent docker docker-compose mix) +plugins=(asdf aws gcloud extract command-not-found tmux git github ssh-agent docker docker-compose mix) # ruby if [ -x ruby ]; then @@ -27,7 +27,7 @@ if [ -x ruby ]; then fi # node -plugins=($plugins npm yarn gatsby react-native) +plugins=($plugins npm yarn react-native) # python plugins=($plugins pip pipenv) @@ -45,11 +45,6 @@ esac # OH MY ZSH! source $ZSH/oh-my-zsh.sh -# AWS CLI -if [ -f /usr/local/bin/aws_zsh_completer.sh ]; then - source /usr/local/bin/aws_zsh_completer.sh -fi - # Android Studio if [ -d ~/Library/Android/sdk ]; then export ANDROID_SDK=~/Library/Android/sdk @@ -67,3 +62,5 @@ if [ $TERM = "screen" ]; then fi export EDITOR="vim" export LSCOLORS="ExGxFxdxCxDxDxhbadExEx" + +eval "$(starship init zsh)"