diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2024-08-29 16:55:08 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2024-08-29 16:55:08 +0100 |
commit | 94a394a557a88bee0a44144ed96b4e45231df441 (patch) | |
tree | efae0bb7bc97e0635799d5ccce253c6410606b5a /zsh | |
parent | 043d17f116e1428f7ca8bfd233eb0b3918feedfb (diff) |
Add starship.rs for zsh
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -14,6 +14,7 @@ HISTSIZE=99999 SAVEHIST=99999 setopt sharehistory # End of lines configured by zsh-newuser-install +# bindkey -v bindkey '^P' up-history @@ -23,7 +24,7 @@ bindkey '^h' backward-delete-char bindkey '^w' backward-kill-word bindkey '^r' history-incremental-search-backward -PROMPT='%~ > ' +# PROMPT='%~ > ' export PYENV_ROOT="$HOME/.pyenv" [[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" @@ -35,3 +36,5 @@ fi test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh" eval $(thefuck --alias) + +eval "$(starship init zsh)" |