zshrc files

Example 1

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

Example 2

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