Skip to content

Instantly share code, notes, and snippets.

@gucosme
Last active October 27, 2023 22:17
Show Gist options
  • Save gucosme/4688d00b166a728d98698a681d79549f to your computer and use it in GitHub Desktop.
Save gucosme/4688d00b166a728d98698a681d79549f to your computer and use it in GitHub Desktop.
devpod zsh config
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.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="superjarin"
zstyle ':omz:update' mode auto # update automatically without asking
# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS="true"
# Uncomment the following line to enable command auto-correction.
ENABLE_CORRECTION="true"
# 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-syntax-highlighting
zsh-autosuggestions
)
source $ZSH/oh-my-zsh.sh
# set vim as default editor
export VISUAL=nvim
export EDITOR="$VISUAL"
alias rzsh="source ~/.zshrc"
alias zshrc="v ~/.zshrc"
alias gr="cd ~/web-code/src/product/u4b/uber-health-web/guest-rides"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment