-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathzshrc
More file actions
30 lines (22 loc) · 868 Bytes
/
Copy pathzshrc
File metadata and controls
30 lines (22 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# ZSHRC
#
#
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Default theme (overridden below for specific accounts)
ZSH_THEME="otype"
# Use different theme for Meltwater account
[[ $USER == "hgschmidtmw" ]] && ZSH_THEME="bira"
# Automatically upgrade oh-my-zsh without prompting you
DISABLE_UPDATE_PROMPT=true
# Add wisely, as too many plugins slow down shell startup.
# Note: z, sudo, direnv are bundled with OMZ.
# zsh-autosuggestions + zsh-syntax-highlighting must be cloned into $ZSH_CUSTOM/plugins/.
plugins=(colored-man-pages colorize emacs github git git-extras gh history sudo)
# Set colorize style
ZSH_COLORIZE_STYLE="colorful"
# Source oh-my-zsh
source $ZSH/oh-my-zsh.sh
# Ensure all zsh completions are loaded (must run after oh-my-zsh and all fpath additions)
fpath=(~/.zsh/completions $fpath)
autoload -Uz compinit && compinit