Skip to content

Instantly share code, notes, and snippets.

@c5inco
Last active February 21, 2021 06:42
Show Gist options
  • Save c5inco/12506fa4d149234f26e1f2d06162d54d to your computer and use it in GitHub Desktop.
Save c5inco/12506fa4d149234f26e1f2d06162d54d to your computer and use it in GitHub Desktop.
# enable the default zsh completions!
autoload -Uz compinit && compinit
# Aliases
alias zshrc='code ~/.zshrc'
alias gitconfig='code ~/.gitconfig'
alias ..='cd ..'
alias ...='cd ../..'
alias ls='ls -GFh'
alias ll='ls -alh'
alias cls='clear'
alias hidedesktop='defaults write com.apple.finder CreateDesktop false; killall Finder'
alias showdesktop='defaults write com.apple.finder CreateDesktop true; killall Finder'
# Paths
export PATH=~/bin:$PATH
# Git completion
zstyle ':completion:*:*:git:*' script ~/.zsh/git-completion.bash
fpath=(~/.zsh $fpath)
# Starship
eval "$(starship init zsh)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment