Last active
May 26, 2022 17:46
-
-
Save Mamaduka/641a5f161f30d9f69012929f8e28db0f to your computer and use it in GitHub Desktop.
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/mamaduka/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes | |
ZSH_THEME="avit" | |
# Uncomment the following line to disable auto-setting terminal title. | |
DISABLE_AUTO_TITLE="true" | |
# Don't check for new mail | |
MAILCHECK=0 | |
# Aliases | |
alias createsite="sh ~/Projects/bin/create.sh" | |
alias deletesite="sh ~/Projects/bin/delete.sh" | |
alias experimental="sh ~/Projects/bin/experimental.sh" | |
# Which plugins would you like to load? | |
# Standard plugins can be found in $ZSH/plugins/ | |
# Custom plugins may be added to $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 | |
export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH" | |
export PATH="/opt/homebrew/sbin:$PATH" | |
# Composer | |
export PATH="~/.composer/vendor/bin:$PATH" | |
export PATH="/opt/homebrew/opt/[email protected]/bin:$PATH" | |
# DBngin | |
export PATH="/Users/Shared/DBngin/mysql/8.0.19/bin:$PATH" | |
export GPG_TTY=$(tty) | |
# export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" | |
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment