This commit is contained in:
Anthony Cicchetti 2019-10-14 09:46:35 -04:00
parent c62960330f
commit b87ae7cbd5
2 changed files with 6 additions and 1 deletions

View file

@ -17,7 +17,7 @@ set ttyfast
set wildmenu
set title
set list
set listchars=tab:→\ ,eol,trail:⋅,extends:,precedes:
set listchars=tab:→\ ,eol,trail:⋅,extends:,precedes:,space:␣
set showbreak=
set timeoutlen=500

View file

@ -42,6 +42,11 @@ source <(antibody init)
antibody bundle < ~/.zsh_plugins.txt
if [[ -d ~/.cargo/bin ]]; then
export PATH="$HOME/.cargo/bin:$PATH"
fi
if [[ -e ~/.cargo/bin/starship ]]; then
eval "$(~/.cargo/bin/starship init zsh)"
else