diff options
| author | EnricoGuccii <partyka.003@proton.me> | 2025-11-04 16:27:53 +0100 |
|---|---|---|
| committer | EnricoGuccii <partyka.003@proton.me> | 2025-11-04 16:27:53 +0100 |
| commit | e52f3b9486c85c9b06efdf006ef425c4cc309f55 (patch) | |
| tree | ef9a4cb49f8d049e9c0422768348d219b66ed7f5 /.zshrc | |
| parent | 50e9596a04c77bd03ded95a5fe1f1c2799e153fb (diff) | |
poetry setup
Diffstat (limited to '.zshrc')
| -rw-r--r-- | .zshrc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -8,7 +8,7 @@ HISTFILE=~/.zsh_history HISTSIZE=5000 SAVEHIST=5000 -bindkey -v +# bindkey -v export KEYTIMEOUT=1 autoload -Uz compinit && compinit @@ -21,6 +21,7 @@ PROMPT='%F{green}%n@%m%f %F{yellow}%~%f ' export CLICOLOR=1 export LSCOLORS=GxFxCxDxBxegedabagaced export PATH="$HOME/.local/omnisharp:$PATH" +export PATH="$HOME/.dotnet/tools:$PATH" alias grep='grep --color=auto' alias ll='lsd -all' @@ -48,3 +49,7 @@ if command -v tmux >/dev/null 2>&1; then fi fi PATH=~/cli/sf/bin:$PATH + +export PYENV_ROOT="$HOME/.pyenv" +[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" +eval "$(pyenv init - zsh)" |