added powerlevel10k theme
This commit is contained in:
parent
f4ac597497
commit
e5b68250b9
15
.zshrc
15
.zshrc
|
@ -1,5 +1,12 @@
|
||||||
|
# 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
|
||||||
|
|
||||||
export ZSH="$HOME/.oh-my-zsh"
|
export ZSH="$HOME/.oh-my-zsh"
|
||||||
ZSH_THEME="cobalt2"
|
ZSH_THEME="powerlevel10k/powerlevel10k"
|
||||||
CASE_SENSITIVE="true"
|
CASE_SENSITIVE="true"
|
||||||
ENABLE_CORRECTION="true"
|
ENABLE_CORRECTION="true"
|
||||||
COMPLETION_WAITING_DOTS="true"
|
COMPLETION_WAITING_DOTS="true"
|
||||||
|
@ -22,7 +29,5 @@ setopt PROMPT_SUBST
|
||||||
export PROMPT='$(cdbm -add)'$PROMPT
|
export PROMPT='$(cdbm -add)'$PROMPT
|
||||||
function c() { dir=$(cdbm 3>&1 1>&2 2>&3); cd $dir; }
|
function c() { dir=$(cdbm 3>&1 1>&2 2>&3); cd $dir; }
|
||||||
function pb() { echo "$1" | nc pastebin.24unix.net 9999 }
|
function pb() { echo "$1" | nc pastebin.24unix.net 9999 }
|
||||||
eval "$(zoxide init zsh)"
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
|
||||||
neofetch
|
|
||||||
|
|
4
setup.sh
4
setup.sh
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
cp Settings/.zshrc Settings/.vimrc Settings/.zprofile Settings/.gitconfig .
|
cp Settings/.zshrc Settings/.vimrc Settings/.zprofile Settings/.gitconfig Settings/.p10k.zsh .
|
||||||
|
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
|
||||||
|
|
||||||
cp Settings/cobalt2.zsh-theme .oh-my-zsh
|
|
||||||
|
|
||||||
if [ $(id -u) -ne 0 ]
|
if [ $(id -u) -ne 0 ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue