Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions git/gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@

[push]
default = current
autoSetupRemote = true

[fetch]
prune = true
Expand Down
3 changes: 2 additions & 1 deletion vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
13 changes: 6 additions & 7 deletions zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -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, -)
Expand Down Expand Up @@ -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"