switch from pure to powerlevel10k prompt
This commit is contained in:
parent
2c5bedaacf
commit
20678ed3d6
20
.zshrc
20
.zshrc
@ -1,3 +1,10 @@
|
|||||||
|
# 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
|
||||||
|
|
||||||
# Dependancies You Need for this Config
|
# Dependancies You Need for this Config
|
||||||
# zsh-syntax-highlighting - syntax highlighting for ZSH in standard repos
|
# zsh-syntax-highlighting - syntax highlighting for ZSH in standard repos
|
||||||
# autojump - jump to directories with j or jc for child or jo to open in file manager
|
# autojump - jump to directories with j or jc for child or jo to open in file manager
|
||||||
@ -5,8 +12,10 @@
|
|||||||
|
|
||||||
# Initial Setup
|
# Initial Setup
|
||||||
# mkdir -p "$HOME/zsh/.zsh"
|
# mkdir -p "$HOME/zsh/.zsh"
|
||||||
# git submodule add https://github.com/sindresorhus/pure.git "$HOME/zsh/pure"
|
# touch "$HOME/.cache/zshhistory
|
||||||
# Setup Alias in $HOME/zsh/aliasrc
|
# Setup Alias in $HOME/zsh/aliasrc
|
||||||
|
# git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
|
||||||
|
# echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>! ~/.zshrc
|
||||||
|
|
||||||
# Enable colors and change prompt:
|
# Enable colors and change prompt:
|
||||||
autoload -U colors && colors
|
autoload -U colors && colors
|
||||||
@ -15,11 +24,6 @@ PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magent
|
|||||||
# Custom Variables
|
# Custom Variables
|
||||||
EDITOR=vim
|
EDITOR=vim
|
||||||
|
|
||||||
# Pure Prompt
|
|
||||||
fpath+=$HOME/zsh/pure
|
|
||||||
autoload -U promptinit; promptinit
|
|
||||||
prompt pure
|
|
||||||
|
|
||||||
# History in cache directory:
|
# History in cache directory:
|
||||||
HISTSIZE=10000
|
HISTSIZE=10000
|
||||||
SAVEHIST=10000
|
SAVEHIST=10000
|
||||||
@ -43,3 +47,7 @@ bindkey '^ ' autosuggest-accept
|
|||||||
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null
|
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null
|
||||||
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|
||||||
source /usr/share/autojump/autojump.zsh 2>/dev/null
|
source /usr/share/autojump/autojump.zsh 2>/dev/null
|
||||||
|
source ~/powerlevel10k/powerlevel10k.zsh-theme
|
||||||
|
|
||||||
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
Reference in New Issue
Block a user