Skip to content

Commit d8990d9

Browse files
committed
add .zshrc
1 parent 27d0e08 commit d8990d9

File tree

1 file changed

+109
-0
lines changed

1 file changed

+109
-0
lines changed

.zshrc

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# If you come from bash you might have to change your $PATH.
2+
# export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
3+
4+
# Path to your Oh My Zsh installation.
5+
export ZSH=$HOME/.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
11+
ZSH_THEME="adben"
12+
# Set list of themes to pick from when loading at random
13+
# Setting this variable when ZSH_THEME="devcontainers"
14+
# a theme from this variable instead of looking in $ZSH/themes/
15+
# If set to an empty array, this variable will have no effect.
16+
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
17+
18+
# Uncomment the following line to use case-sensitive completion.
19+
# CASE_SENSITIVE="true"
20+
21+
# Uncomment the following line to use hyphen-insensitive completion.
22+
# Case-sensitive completion must be off. _ and - will be interchangeable.
23+
# HYPHEN_INSENSITIVE="true"
24+
25+
# Uncomment one of the following lines to change the auto-update behavior
26+
# zstyle ':omz:update' mode disabled # disable automatic updates
27+
# zstyle ':omz:update' mode auto # update automatically without asking
28+
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
29+
30+
# Uncomment the following line to change how often to auto-update (in days).
31+
# zstyle ':omz:update' frequency 13
32+
33+
# Uncomment the following line if pasting URLs and other text is messed up.
34+
# DISABLE_MAGIC_FUNCTIONS="true"
35+
36+
# Uncomment the following line to disable colors in ls.
37+
# DISABLE_LS_COLORS="true"
38+
39+
# Uncomment the following line to disable auto-setting terminal title.
40+
# DISABLE_AUTO_TITLE="true"
41+
42+
# Uncomment the following line to enable command auto-correction.
43+
# ENABLE_CORRECTION="true"
44+
45+
# Uncomment the following line to display red dots whilst waiting for completion.
46+
# You can also set it to another string to have that shown instead of the default red dots.
47+
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
48+
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
49+
# COMPLETION_WAITING_DOTS="true"
50+
51+
# Uncomment the following line if you want to disable marking untracked files
52+
# under VCS as dirty. This makes repository status check for large repositories
53+
# much, much faster.
54+
# DISABLE_UNTRACKED_FILES_DIRTY="true"
55+
56+
# Uncomment the following line if you want to change the command execution time
57+
# stamp shown in the history command output.
58+
# You can set one of the optional three formats:
59+
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
60+
# or set a custom format using the strftime function format specifications,
61+
# see 'man strftime' for details.
62+
# HIST_STAMPS="mm/dd/yyyy"
63+
64+
# Would you like to use another custom folder than $ZSH/custom?
65+
# ZSH_CUSTOM=/path/to/new-custom-folder
66+
67+
# Which plugins would you like to load?
68+
# Standard plugins can be found in $ZSH/plugins/
69+
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
70+
# Example format: plugins=(rails git textmate ruby lighthouse)
71+
# Add wisely, as too many plugins slow down shell startup.
72+
plugins=(git)
73+
74+
source $ZSH/oh-my-zsh.sh
75+
76+
# User configuration
77+
78+
# export MANPATH="/usr/local/man:$MANPATH"
79+
80+
# You may need to manually set your language environment
81+
# export LANG=en_US.UTF-8
82+
83+
# Preferred editor for local and remote sessions
84+
# if [[ -n $SSH_CONNECTION ]]; then
85+
# export EDITOR='vim'
86+
# else
87+
# export EDITOR='nvim'
88+
# fi
89+
90+
# Compilation flags
91+
# export ARCHFLAGS="-arch $(uname -m)"
92+
93+
# Set personal aliases, overriding those provided by Oh My Zsh libs,
94+
# plugins, and themes. Aliases can be placed here, though Oh My Zsh
95+
# users are encouraged to define aliases within a top-level file in
96+
# the $ZSH_CUSTOM folder, with .zsh extension. Examples:
97+
# - $ZSH_CUSTOM/aliases.zsh
98+
# - $ZSH_CUSTOM/macos.zsh
99+
# For a full list of active aliases, run `alias`.
100+
#
101+
# Example aliases
102+
# alias zshconfig="mate ~/.zshrc"
103+
# alias ohmyzsh="mate ~/.oh-my-zsh"
104+
alias cls="clear"
105+
alias gc="git commit -m"
106+
alias ga="git add"
107+
alias gp="git push"
108+
DISABLE_AUTO_UPDATE=true
109+
DISABLE_UPDATE_PROMPT=true

0 commit comments

Comments
 (0)