-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
18 lines (15 loc) · 788 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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
plugins=(
vi-mode
) # this one doesnt conflict with autosuggestions, somehow the tab completion wont work with the other one
source $HOME/.oh-my-zsh/oh-my-zsh.sh
# Portable config; goes after oh-my-zsh so it overrides
source ~/.zshrc_portable
# Local config; splitting it so dotfile copying is easy
# Won't exist on servers
[[ ! -f ~/.zshrc_local ]] || source ~/.zshrc_local