zsh: Add powerlevel10k
This commit is contained in:
parent
92c1d9283c
commit
2a22884232
23
.zshrc
23
.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
|
||||
|
||||
# If you come from bash you might have to change your $PATH.
|
||||
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||||
|
||||
@ -7,7 +14,7 @@ export ZSH=$HOME/.oh-my-zsh
|
||||
# Set name of the theme to load. Optionally, if you set this to "random"
|
||||
# it'll load a random theme each time that oh-my-zsh is loaded.
|
||||
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
|
||||
ZSH_THEME="lambda-gitster"
|
||||
ZSH_THEME="powerlevel10k/powerlevel10k"
|
||||
|
||||
# Uncomment the following line to use case-sensitive completion.
|
||||
# CASE_SENSITIVE="true"
|
||||
@ -65,14 +72,16 @@ unsetopt share_history
|
||||
# export LANG=en_US.UTF-8
|
||||
|
||||
# Preferred editor for local and remote sessions
|
||||
export EDITOR='vim'
|
||||
export PATH=$PATH:$HOME/bin/:$HOME/.local/bin:$HOME/.dotnet/tools
|
||||
export EDITOR='nvim'
|
||||
export PATH=$PATH:$HOME/bin/:$HOME/.local/bin:$HOME/.dotnet/tools:./node_modules/.bin/:./vendor/bin/:$HOME/go/bin
|
||||
export ANSIBLE_VAULT_PASSWORD_FILE=~/.ansible/vault_pass
|
||||
|
||||
# Compilation flags
|
||||
# export ARCHFLAGS="-arch x86_64"
|
||||
|
||||
# ssh
|
||||
# export SSH_KEY_PATH="~/.ssh/rsa_id"
|
||||
# export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
|
||||
|
||||
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
||||
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
||||
@ -83,8 +92,12 @@ export PATH=$PATH:$HOME/bin/:$HOME/.local/bin:$HOME/.dotnet/tools
|
||||
# alias zshconfig="mate ~/.zshrc"
|
||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||
|
||||
alias vim=nvim
|
||||
alias calc='python -ic "from __future__ import division; from math import *"'
|
||||
|
||||
# too much vim...
|
||||
:q () { exit; }
|
||||
mkfile() { mkdir -p "$(dirname "$1")" && touch "$1"; }
|
||||
|
||||
function ranger-cd {
|
||||
tempfile="$(mktemp -t tmp.XXXXXX)"
|
||||
@ -115,3 +128,7 @@ ZSH_HIGHLIGHT_STYLES[double-quoted-argument-unclosed]='fg=2,bold'
|
||||
ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument]='fg=10'
|
||||
ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument-unclosed]='fg=10,bold'
|
||||
|
||||
source /usr/share/nvm/init-nvm.sh
|
||||
|
||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||
|
27
install.sh
27
install.sh
@ -9,21 +9,18 @@ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
|
||||
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
|
||||
|
||||
# install zsh plugins
|
||||
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|
||||
|
||||
mkdir -p ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes
|
||||
|
||||
git clone https://github.com/ergenekonyigit/lambda-gitster.git
|
||||
cp lambda-gitster/*.zsh-theme ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes
|
||||
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|
||||
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
|
||||
|
||||
# symlinks
|
||||
ln -s $DIR/.vimrc ~/.vimrc
|
||||
ln -s $DIR/.ideavimrc ~/.ideavimrc
|
||||
ln -s $DIR/.gitconfig ~/.gitconfig
|
||||
ln -s $DIR/.zshrc ~/.zshrc
|
||||
ln -s $DIR/.Xdefaults ~/.Xdefaults
|
||||
ln -sf $DIR/.vimrc ~/.vimrc
|
||||
ln -sf $DIR/.ideavimrc ~/.ideavimrc
|
||||
ln -sf $DIR/.gitconfig ~/.gitconfig
|
||||
ln -sf $DIR/.zshrc ~/.zshrc
|
||||
ln -sf $DIR/.Xdefaults ~/.Xdefaults
|
||||
ln -sf $DIR/.p10k.zsh ~/.p10k.zsh
|
||||
|
||||
ln -s $DIR/awesome/ ~/.config/awesome/
|
||||
ln -s $DIR/kitty/ ~/.config/kitty/
|
||||
ln -s $DIR/nvim/ ~/.config/nvim/
|
||||
ln -sf $DIR/awesome/ ~/.config/awesome/
|
||||
ln -sf $DIR/kitty/ ~/.config/kitty/
|
||||
ln -sf $DIR/nvim/ ~/.config/nvim/
|
||||
|
Loading…
Reference in New Issue
Block a user