Skip to content

Commit

Permalink
Switch to powerlvl10k
Browse files Browse the repository at this point in the history
  • Loading branch information
kimond committed Sep 19, 2023
1 parent 926b03a commit 3c98c9e
Show file tree
Hide file tree
Showing 7 changed files with 1,779 additions and 13 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ files="
gitignore_global
zpreztorc
xmonad
p10k.zsh
"

# Config dirs list
Expand All @@ -25,7 +26,6 @@ config_files="
rofi
termite
wal
spaceship.zsh
"
# create dotfiles_old in homedir
echo "Creating $olddir for backup of any existing dotfiles in ~"
Expand Down
1,764 changes: 1,764 additions & 0 deletions p10k.zsh

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions spaceship.zsh

This file was deleted.

4 changes: 3 additions & 1 deletion zpreztorc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ zstyle ':prezto:load' pmodule \
'syntax-highlighting' \
'history-substring-search' \
'autosuggestions' \
# 'prompt' \
'prompt' \

zstyle :prezto:module:prompt theme powerlevel10k


zstyle ':prezto:*:*' color 'yes'
Expand Down
1 change: 0 additions & 1 deletion zsh/spaceship
Submodule spaceship deleted from c93f17
12 changes: 11 additions & 1 deletion zshrc
Original file line number Diff line number Diff line change
@@ -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

# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
Expand Down Expand Up @@ -76,7 +83,7 @@ alias dkc="docker-compose"
export TERM="screen-256color"

# Source shellder theme
source ~/.dotfiles/zsh/spaceship/spaceship.zsh-theme
# source ~/.dotfiles/zsh/spaceship/spaceship.zsh-theme

# DART OPTIONS
export PATH=$PATH:~/.pub-cache/bin
Expand Down Expand Up @@ -146,3 +153,6 @@ alias tcw='terraform console -var-file=variables/$(terraform workspace show).tfv

#Utils
alias xmonadedit='vim /home/kdesrosiers/.xmonad/xmonad.hs'

# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh

0 comments on commit 3c98c9e

Please sign in to comment.