Use p10k prompt

This commit is contained in:
Daniel Carrillo 2021-06-17 18:13:12 +02:00
parent 3c634f4870
commit 7b059d0859
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
3 changed files with 1605 additions and 1 deletions

1593
.p10k.zsh Normal file

File diff suppressed because it is too large Load Diff

View File

@ -99,7 +99,7 @@ zstyle ':prezto:module:editor' key-bindings 'emacs'
# Set the prompt theme to load.
# Setting it to 'random' loads a random theme.
# Auto set to 'off' on dumb terminals.
zstyle ':prezto:module:prompt' theme 'sorinmod'
zstyle ':prezto:module:prompt' theme 'powerlevel10k'
# Set how themes that use promptpwd function display the pwd, can be 'short', 'long', or 'full'
# zstyle ':prezto:module:prompt' pwd-length 'short'

11
.zshrc
View File

@ -1,3 +1,10 @@
# Enable Powerlevel10k instant prompt.uld 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
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
@ -9,6 +16,7 @@ export PATH=$PATH:~/bin
setopt clobber
zstyle ':completion:*' rehash true
export HISTFILE=~/.zsh_history
export HISTFILESIZE=100000
export HISTSIZE=100000
@ -111,3 +119,6 @@ autoload -U compinit && compinit
# custom device
source ~/.zshrc_custom
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh