Created
November 20, 2019 08:11
-
-
Save crmpicco/ae9db002739788e26361df4d7662443c to your computer and use it in GitHub Desktop.
MacOS zshrc.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias ll='ls -lG' | |
export EDITOR=$(which vim) | |
# Highlight the current autocomplete option | |
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" | |
# Better SSH/Rsync/SCP Autocomplete | |
zstyle ':completion:*:(scp|rsync):*' tag-order ' hosts:-ipaddr:ip\ address hosts:-host:host files' | |
zstyle ':completion:*:(ssh|scp|ftp|sftp):*' hosts $hosts | |
zstyle ':completion:*:(ssh|scp|ftp|sftp):*' users $users | |
# @TODO remove this if it's not needed | |
#zstyle ':completion:*:(ssh|scp|rsync):*:hosts-host' ignored-patterns '*(.|:)*' loopback ip6-loopback localhost ip6-localhost broadcasthost | |
#zstyle ':completion:*:(ssh|scp|rsync):*:hosts-ipaddr' ignored-patterns '^(<->.<->.<->.<->|(|::)([[:xdigit:].]##:(#c,2))##(|%*))' '127.0.0.<->' '255.255.255.255' '::1' 'fe80::*' | |
# Allow for autocomplete to be case insensitive | |
zstyle ':completion:*' matcher-list '' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' \ | |
'+l:|?=** r:|?=**' | |
# Initialize the autocompletion | |
autoload -Uz compinit && compinit -i | |
# set the ZSH history size to something massive | |
HISTFILE=~/.zsh_history | |
HISTSIZE=999999999 | |
SAVEHIST=$HISTSIZE | |
source /Users/crmpicco/zsh-git-prompt/zshrc.sh | |
PROMPT='%B%m%~%b$(git_super_status) %# ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment