Created
April 20, 2021 16:26
-
-
Save chrisbodhi/eaf01d543904ba514142ba83f8b88159 to your computer and use it in GitHub Desktop.
My current zshrc
This file contains hidden or 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
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/chrisboette/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
# Installed Feb. 4, 2018: https://github.com/denysdovhan/spaceship-prompt | |
ZSH_THEME="spaceship" | |
# Uncomment the following line to display red dots whilst waiting for completion. | |
COMPLETION_WAITING_DOTS="true" | |
# Uncomment the following line if you want to change the command execution time | |
# stamp shown in the history command output. | |
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | |
HIST_STAMPS="mm/dd/yyyy" | |
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) | |
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
# Add wisely, as too many plugins slow down shell startup. | |
plugins=(git zsh-autosuggestions) | |
source $ZSH/oh-my-zsh.sh | |
# User configuration | |
# env vars | |
# source ~/.env-vars | |
source $ZSH/custom/alias.sh | |
source $ZSH/custom/export.sh | |
source $ZSH/custom/functions.sh | |
source $ZSH/custom/source.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment