Created
May 22, 2024 09:31
-
-
Save sahiljhawar/2300feb3aebf0f483bca6e2573509886 to your computer and use it in GitHub Desktop.
ZSH plugins without oh-my-zsh
This file contains hidden or 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
# This zshrc file is for people who can run zsh but are not able to or allowed to install oh-my-zsh and plugins therein. | |
# zinit skips the omz part and allows you to install all the plugins directly. | |
# This script is entirely based on this video: https://www.youtube.com/watch?v=ud7YxC33Z3w | |
# make changes as per your requirements. | |
# 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 | |
# Enable menu selection and prevent auto cycling | |
zstyle ':completion:*' menu select | |
# Customize menu appearance: | |
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" | |
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}' | |
ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit/zinit.git" | |
if [ ! -d "$ZINIT_HOME" ]; then | |
mkdir -p "$(dirname $ZINIT_HOME)" | |
git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME" | |
fi | |
# Source/Load zinit | |
source "${ZINIT_HOME}/zinit.zsh" | |
# Load a few important annexes, without Turbo | |
# (this is currently required for annexes) | |
zinit light-mode for \ | |
zdharma-continuum/zinit-annex-as-monitor \ | |
zdharma-continuum/zinit-annex-bin-gem-node \ | |
zdharma-continuum/zinit-annex-patch-dl \ | |
zdharma-continuum/zinit-annex-rust | |
### End of Zinit's installer chunk | |
zinit ice depth=1; zinit light romkatv/powerlevel10k | |
zinit light zsh-users/zsh-syntax-highlighting | |
zinit light zsh-users/zsh-completions | |
zinit light zsh-users/zsh-autosuggestions | |
# Load completions | |
autoload -Uz compinit && compinit | |
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. | |
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh | |
HISTSIZE=10000 | |
HISTFILE=~/.zsh_history | |
SAVEHIST=$HISTSIZE | |
HISTDUP=erase | |
setopt appendhistory | |
setopt sharehistory | |
setopt hist_ignore_dups | |
setopt hist_ignore_space | |
setopt hist_ignore_all_dups | |
setopt hist_save_no_dups |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment