Skip to content

Commit

Permalink
zsh: remove git plugin and add auto-expand fn
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusvellone committed Apr 12, 2021
1 parent bb0311b commit 698946d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ zplug load
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(
git
docker
terraform
docker-compose
Expand Down Expand Up @@ -140,3 +139,10 @@ alias ll='ls -lh'

# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh

function expand-alias() {
zle _expand_alias
zle self-insert
}
zle -N expand-alias
bindkey -M main ' ' expand-alias

0 comments on commit 698946d

Please sign in to comment.