apt install zsh git wget curl
git clone --depth=1 https://github.com/mattmc3/antidote.git ${ZDOTDIR:-$HOME}/.antidote
chsh -s $(which zsh)
Last active
March 25, 2024 00:28
-
-
Save mallendeo/e62024d4cb4734e48aa41e3a14b0c0db to your computer and use it in GitHub Desktop.
ZSH + Antidote + Powerlevel10k
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
rupa/z | |
ohmyzsh/ohmyzsh path:lib | |
ohmyzsh/ohmyzsh path:plugins/git | |
ohmyzsh/ohmyzsh path:plugins/command-not-found | |
ohmyzsh/ohmyzsh path:plugins/extract | |
#spaceship-prompt/spaceship-prompt | |
#sindresorhus/pure | |
romkatv/powerlevel10k | |
zsh-users/zsh-syntax-highlighting | |
zsh-users/zsh-autosuggestions | |
zsh-users/zsh-history-substring-search |
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
# 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 | |
autoload -Uz compinit | |
compinit | |
source ~/.antidote/antidote.zsh | |
antidote load ${ZDOTDIR:-$HOME}/.zsh_plugins.txt | |
export LC_ALL=en_US.UTF-8 | |
export LANG=en_US.UTF-8 | |
export TERM=xterm-256color | |
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. | |
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment