96 lines
2.4 KiB
Bash
96 lines
2.4 KiB
Bash
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
|
# Initialization code that may require console input (password prompts, [y/n]
|
|
# confirmations, etc.) must go above this block; everything else may go below.
|
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
|
fi
|
|
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
export EDITOR='nvim'
|
|
export GPG_TTY=$(tty)
|
|
#export ZVM_INIT_MODE='sourcing'
|
|
|
|
ZSH_THEME="powerlevel10k/powerlevel10k"
|
|
# DISABLE_AUTO_TITLE="true"
|
|
ENABLE_CORRECTION="true"
|
|
HIST_STAMPS="yyyy-mm-dd"
|
|
HISTSIZE=128000
|
|
SAVEHIST=128000
|
|
|
|
# Plugin Options
|
|
ZSH_ALIAS_FINDER_AUTOMATIC=true
|
|
|
|
function zvm_after_init() {
|
|
autoload add-zle-hook-widget
|
|
add-zle-hook-widget zle-line-pre-redraw zvm_zle-line-pre-redraw
|
|
}
|
|
|
|
plugins=(
|
|
alias-finder
|
|
aliases
|
|
ansible
|
|
battery
|
|
colored-man-pages
|
|
command-not-found
|
|
dircycle
|
|
dirhistory
|
|
docker
|
|
docker-compose
|
|
dotenv
|
|
fzf-zsh-plugin
|
|
genpass
|
|
git
|
|
git-prompt
|
|
history
|
|
last-working-dir
|
|
ssh
|
|
ssh-agent
|
|
sudo
|
|
tmux
|
|
vscode
|
|
web-search
|
|
zoxide
|
|
zsh-autosuggestions
|
|
zsh-syntax-highlighting
|
|
zsh-vi-mode
|
|
)
|
|
|
|
if [[ "$OSTYPE" =~ ^darwin ]]; then
|
|
plugins+=(
|
|
brew
|
|
copypath
|
|
macos
|
|
)
|
|
fi
|
|
|
|
if [[ "$OSTYPE" =~ ^linux ]]; then
|
|
plugins+=(
|
|
archlinux
|
|
ubuntu
|
|
)
|
|
fi
|
|
|
|
# set up dircolors
|
|
if [ $(uname -s) = 'Darwin' ]; then
|
|
[[ ! -f $(which gdircolors) ]] || $(test -f $HOME/.dir_colors && eval $(gdircolors $HOME/.dir_colors) || eval $(gdircolors))
|
|
else
|
|
test -f $HOME/.dir_colors && eval $(dircolors -b $HOME/.dir_colors) || eval $(dircolors -b)
|
|
fi
|
|
|
|
# Fix ctrl+r
|
|
[[ ! -f $ZSH/custom/plugins/zsh-vi-mode/zsh-vi-mode.plugin.zsh ]] || source $ZSH/custom/plugins/zsh-vi-mode/zsh-vi-mode.plugin.zsh
|
|
zvm_after_init_commands+=('[ -f $HOME/.fzf.zsh ] && source $HOME/.fzf.zsh')
|
|
|
|
[[ ! -f $ZSH/oh-my-zsh.sh ]] || source $ZSH/oh-my-zsh.sh
|
|
#eval "$(starship init zsh)"
|
|
#eval "$(zoxide init zsh)"
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
[[ ! -f $HOME/.p10k.zsh ]] || source $HOME/.p10k.zsh
|
|
|
|
# Load aliases
|
|
[[ ! -f $HOME/.aliases ]] || source $HOME/.aliases
|
|
|
|
# display mini system info
|
|
[[ ! -f $(which pfetch) ]] || $(which pfetch)
|