Created
June 15, 2022 03:57
-
-
Save roshanca/4f21190ef4477016420e1fec57fb2046 to your computer and use it in GitHub Desktop.
my zsh config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/Mac/.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="agnoster" | |
# Set list of themes to pick from when loading at random | |
# Setting this variable when ZSH_THEME=random will cause zsh to load | |
# a theme from this variable instead of looking in $ZSH/themes/ | |
# If set to an empty array, this variable will have no effect. | |
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Uncomment the following line to use hyphen-insensitive completion. | |
# Case-sensitive completion must be off. _ and - will be interchangeable. | |
# HYPHEN_INSENSITIVE="true" | |
# Uncomment one of the following lines to change the auto-update behavior | |
# zstyle ':omz:update' mode disabled # disable automatic updates | |
# zstyle ':omz:update' mode auto # update automatically without asking | |
# zstyle ':omz:update' mode reminder # just remind me to update when it's time | |
# Uncomment the following line to change how often to auto-update (in days). | |
# zstyle ':omz:update' frequency 13 | |
# Uncomment the following line if pasting URLs and other text is messed up. | |
# DISABLE_MAGIC_FUNCTIONS="true" | |
# Uncomment the following line to disable colors in ls. | |
# DISABLE_LS_COLORS="true" | |
# Uncomment the following line to disable auto-setting terminal title. | |
# DISABLE_AUTO_TITLE="true" | |
# Uncomment the following line to enable command auto-correction. | |
# ENABLE_CORRECTION="true" | |
# Uncomment the following line to display red dots whilst waiting for completion. | |
# You can also set it to another string to have that shown instead of the default red dots. | |
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f" | |
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765) | |
# COMPLETION_WAITING_DOTS="true" | |
# Uncomment the following line if you want to disable marking untracked files | |
# under VCS as dirty. This makes repository status check for large repositories | |
# much, much faster. | |
# DISABLE_UNTRACKED_FILES_DIRTY="true" | |
# Uncomment the following line if you want to change the command execution time | |
# stamp shown in the history command output. | |
# You can set one of the optional three formats: | |
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | |
# or set a custom format using the strftime function format specifications, | |
# see 'man strftime' for details. | |
# HIST_STAMPS="mm/dd/yyyy" | |
# Would you like to use another custom folder than $ZSH/custom? | |
# ZSH_CUSTOM=/path/to/new-custom-folder | |
export NVM_LAZY_LOAD=true | |
export NVM_COMPLETION=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 | |
git-extras | |
sublime | |
zsh-autosuggestions | |
zsh-syntax-highlighting | |
# zsh-nvm | |
colorize | |
colored-man-pages | |
brew | |
bundler | |
npm | |
yarn | |
rvm | |
) | |
source $ZSH/oh-my-zsh.sh | |
# User configuration | |
# export MANPATH="/usr/local/man:$MANPATH" | |
# You may need to manually set your language environment | |
export LANG=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
# Preferred editor for local and remote sessions | |
# if [[ -n $SSH_CONNECTION ]]; then | |
# export EDITOR='vim' | |
# else | |
# export EDITOR='mvim' | |
# fi | |
# Compilation flags | |
# export ARCHFLAGS="-arch x86_64" | |
# Set personal aliases, overriding those provided by oh-my-zsh libs, | |
# plugins, and themes. Aliases can be placed here, though oh-my-zsh | |
# users are encouraged to define aliases within the ZSH_CUSTOM folder. | |
# For a full list of active aliases, run `alias`. | |
# | |
# Example aliases | |
# alias zshconfig="mate ~/.zshrc" | |
# alias ohmyzsh="mate ~/.oh-my-zsh" | |
alias zshconfig="st ~/.zshrc" | |
alias restart="source $HOME/.zshrc" | |
alias gs='git status -s' | |
alias glogs="git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
alias gdtl='git difftool' | |
alias gdc='git diff --color | diff-so-fancy' | |
alias gcnmsg='git commit --allow-empty -m' | |
alias grep='grep --color=auto' | |
alias rake='noglob rake' | |
alias -s tar="tar -xvf" | |
alias -s gz="tar -xzvf" | |
alias cat="pygmentize -f terminal256 -O style=native -g" | |
alias npms="npm ls --depth 0" | |
alias brewls="brew list --versions" | |
alias python=/opt/homebrew/bin/python3 | |
alias pip=/opt/homebrew/bin/pip3 | |
alias pipu=pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U | |
# Wechat Miniprogram | |
# alias wxClean='git checkout . && git clean -fd' | |
# alias wxInstall='npm install && meili csdk install && meili csdk update && npm run init' | |
# alias wxCheck='f() { git fetch && wxClean && git checkout -b release/v$1 origin/release/v$1 && wxInstall};f' | |
# alias wxCubeact='f() { meili csdk install @meili/wxa-sdk-cubeact@$1 --save -D };f' | |
add_to_path() { | |
local p=$1 | |
if [[ ! "$PATH" == *"$p"* ]]; then | |
export PATH="$p:$PATH" | |
fi | |
} | |
add_to_path "/usr/local/sbin" | |
add_to_path "/opt/homebrew/bin" | |
add_to_path "/opt/homebrew/opt/[email protected]/bin" | |
add_to_path "/opt/homebrew/opt/[email protected]/sbin" | |
# add_to_path "$HOME/.cargo/bin" | |
# add_to_path "$GOPATH/bin" | |
# add_to_path "$HOME/.local/bin" # hie | |
# add_to_path "$HOME/.npm-packages/bin" | |
case "$TERM" in | |
xterm) | |
export TERM=xterm-256color | |
;; | |
screen) | |
export TERM=screen-256color | |
;; | |
esac | |
# Change the default CTRL_T to CTRL_F | |
bindkey '^F' fzf-file-widget | |
DEFAULT_USER=$USER | |
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh | |
export FZF_COMPLETION_TRIGGER='/' | |
# fd - cd to selected directory | |
fd() { | |
local dir | |
dir=$(find ${1:-.} -path '*/\.*' -prune \ | |
-o -type d -print 2> /dev/null | fzf +m) && | |
cd "$dir" | |
} | |
# fda - including hidden directories | |
fda() { | |
local dir | |
dir=$(find ${1:-.} -type d 2> /dev/null | fzf +m) && cd "$dir" | |
} | |
# fkill - kill process | |
fkill() { | |
local pid | |
pid=$(ps -ef | sed 1d | fzf -m | awk '{print $2}') | |
if [ "x$pid" != "x" ] | |
then | |
echo $pid | xargs kill -${1:-9} | |
fi | |
} | |
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. | |
export PATH="$PATH:$HOME/.rvm/bin" | |
export VOLTA_HOME="$HOME/.volta" | |
export PATH="$VOLTA_HOME/bin:$PATH" | |
source /opt/homebrew/opt/git-extras/share/git-extras/git-extras-completion.zsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment