1# If you come from bash you might have to change your $PATH.
  2# export PATH=$HOME/bin:/usr/local/bin:$PATH
  3
  4# Path to your oh-my-zsh installation.
  5export ZSH="/home/arjun/.oh-my-zsh"
  6
  7# Set name of the theme to load --- if set to "random", it will
  8# load a random theme each time oh-my-zsh is loaded, in which case,
  9# to know which specific one was loaded, run: echo $RANDOM_THEME
 10# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
 11ZSH_THEME="myprompt"
 12
 13# Set list of themes to pick from when loading at random
 14# Setting this variable when ZSH_THEME=random will cause zsh to load
 15# a theme from this variable instead of looking in $ZSH/themes/
 16# If set to an empty array, this variable will have no effect.
 17# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
 18
 19# Uncomment the following line to use case-sensitive completion.
 20# CASE_SENSITIVE="true"
 21
 22# Uncomment the following line to use hyphen-insensitive completion.
 23# Case-sensitive completion must be off. _ and - will be interchangeable.
 24# HYPHEN_INSENSITIVE="true"
 25
 26# Uncomment the following line to disable bi-weekly auto-update checks.
 27# DISABLE_AUTO_UPDATE="true"
 28
 29# Uncomment the following line to automatically update without prompting.
 30# DISABLE_UPDATE_PROMPT="true"
 31
 32# Uncomment the following line to change how often to auto-update (in days).
 33# export UPDATE_ZSH_DAYS=13
 34
 35# Uncomment the following line if pasting URLs and other text is messed up.
 36# DISABLE_MAGIC_FUNCTIONS="true"
 37
 38# Uncomment the following line to disable colors in ls.
 39# DISABLE_LS_COLORS="true"
 40
 41# Uncomment the following line to disable auto-setting terminal title.
 42# DISABLE_AUTO_TITLE="true"
 43
 44# Uncomment the following line to enable command auto-correction.
 45# ENABLE_CORRECTION="true"
 46
 47# Uncomment the following line to display red dots whilst waiting for completion.
 48# Caution: this setting can cause issues with multiline prompts (zsh 5.7.1 and newer seem to work)
 49# See https://github.com/ohmyzsh/ohmyzsh/issues/5765
 50# COMPLETION_WAITING_DOTS="true"
 51
 52# Uncomment the following line if you want to disable marking untracked files
 53# under VCS as dirty. This makes repository status check for large repositories
 54# much, much faster.
 55# DISABLE_UNTRACKED_FILES_DIRTY="true"
 56
 57# Uncomment the following line if you want to change the command execution time
 58# stamp shown in the history command output.
 59# You can set one of the optional three formats:
 60# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
 61# or set a custom format using the strftime function format specifications,
 62# see 'man strftime' for details.
 63# HIST_STAMPS="mm/dd/yyyy"
 64
 65# Would you like to use another custom folder than $ZSH/custom?
 66# ZSH_CUSTOM=/path/to/new-custom-folder
 67
 68# Which plugins would you like to load?
 69# Standard plugins can be found in $ZSH/plugins/
 70# Custom plugins may be added to $ZSH_CUSTOM/plugins/
 71# Example format: plugins=(rails git textmate ruby lighthouse)
 72# Add wisely, as too many plugins slow down shell startup.
 73plugins=(git)
 74
 75source $ZSH/oh-my-zsh.sh
 76
 77# User configuration
 78
 79# export MANPATH="/usr/local/man:$MANPATH"
 80
 81# You may need to manually set your language environment
 82# export LANG=en_US.UTF-8
 83
 84# Preferred editor for local and remote sessions
 85# if [[ -n $SSH_CONNECTION ]]; then
 86#   export EDITOR='vim'
 87# else
 88#   export EDITOR='mvim'
 89# fi
 90
 91# Compilation flags
 92# export ARCHFLAGS="-arch x86_64"
 93
 94# Set personal aliases, overriding those provided by oh-my-zsh libs,
 95# plugins, and themes. Aliases can be placed here, though oh-my-zsh
 96# users are encouraged to define aliases within the ZSH_CUSTOM folder.
 97# For a full list of active aliases, run `alias`.
 98#
 99# Example aliases
100# alias zshconfig="mate ~/.zshrc"
101# alias ohmyzsh="mate ~/.oh-my-zsh"
102plugins=(
103    git
104    zsh-autosuggestions
105    zsh-syntax-highlighting
106)