-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
55 lines (45 loc) · 1.53 KB
/
.zshrc
File metadata and controls
55 lines (45 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
PROMPT='%(?.%F{green}.%F{red})%n:%f%F{063}%~$%f '
export EDITOR=vim
export LC_TIME=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
alias ll='ls -alFG'
alias la='ls -A'
alias l='ls -CF'
extract () {
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*) echo "don't know how to extract '$1'..." ;;
esac
else
echo "'$1' is not a valid file!"
fi
}
# Load Git completion
zstyle ':completion:*:*:git:*' script ~/.zsh/git-completion.bash
fpath=(~/.zsh $fpath)
# Load Make completion
zstyle ':completion:*:*:make:*' tag-order 'targets'
# Docker completion
zstyle ':completion:*:*:docker:*' script ~/.zsh/_docker-compose
fpath=(~/.zsh/ $fpath)
autoload -Uz compinit && compinit -u
# Load PipEnv completion
#eval "$(pipenv --completion)"
eval "$(_PIPENV_COMPLETE=zsh_source pipenv)"
# The following lines have been added by Docker Desktop to enable Docker CLI completions.
fpath=(/Users/lior.mizrahi/.docker/completions $fpath)
autoload -Uz compinit && compinit -u
# End of Docker CLI completions
export PATH="/opt/homebrew/opt/curl/bin:$PATH"