diff --git a/git/gitconfig b/git/gitconfig index 68bb271..386ba26 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -66,6 +66,7 @@ [push] default = current + autoSetupRemote = true [fetch] prune = true diff --git a/vscode/settings.json b/vscode/settings.json index bdab5b5..b5744d3 100644 --- a/vscode/settings.json +++ b/vscode/settings.json @@ -108,5 +108,6 @@ // Keep your Copilot setting "github.copilot.nextEditSuggestions.enabled": true, "containers.composeBuild": true, -"aws.cloudformation.telemetry.enabled": false +"aws.cloudformation.telemetry.enabled": false, +"chat.viewSessions.orientation": "stacked" } diff --git a/zsh/zshrc b/zsh/zshrc index 41329d4..c8efb50 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -210,7 +210,7 @@ test" # 6. Slugify the description (Zsh friendly logic) # Convert to lowercase - local clean_desc="${description:l}" + local clean_desc="${description:l}" # Replace spaces with hyphens clean_desc="${clean_desc// /-}" # Remove special characters (keep a-z, 0-9, -) @@ -239,15 +239,14 @@ test" DEFAULT_USER="antonio" +# ============================== +# PATH tweaks +# ============================== +export PATH="$PATH:$HOME/.local/bin" + # ============================= # PyENV tweak # ============================= export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)" - -# ============================== -# PATH tweaks -# ============================== - -export PATH="$PATH:$HOME/.local/bin"