starship migration

This commit is contained in:
Bartek Stalewski 2020-08-19 12:45:46 +02:00
parent 9e10e220f5
commit 60318b0cae
3 changed files with 3 additions and 6 deletions

View File

@ -1,6 +1,7 @@
add_newline = false add_newline = false
prompt_order = [ prompt_order = [
# "kubernetes", # "kubernetes",
"python",
"directory", "directory",
"git_branch", "git_branch",
"git_commit", "git_commit",

View File

@ -37,13 +37,11 @@ ln -sf ~/.dotfiles/conf/tmux.conf ~/.tmux.conf
## zsh ## zsh
# cleaning # cleaning
rm -rf ~/.zsh ~/.zshrc rm -rf ~/.zsh ~/.zshrc
mkdir -p ~/.zsh/plugins # ~/.zsh/themes mkdir -p ~/.zsh/plugins
# dependiences # dependiences
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.zsh/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.zsh/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.zsh/plugins/zsh-syntax-highlighting git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.zsh/plugins/zsh-syntax-highlighting
#git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.zsh/themes/powerlevel10k
# installing # installing
ln -sf ~/.dotfiles/zsh/zshrc ~/.zshrc ln -sf ~/.dotfiles/zsh/zshrc ~/.zshrc
ln -sf ~/.dotfiles/conf/starship.toml ~/.config ln -sf ~/.dotfiles/conf/starship.toml ~/.config
#ln -sf ~/.dotfiles/zsh/p10k.zsh ~/.p10k.zsh
touch ~/.zshrc.local touch ~/.zshrc.local

View File

@ -7,10 +7,8 @@ zstyle ':completion:*' menu select
export CLICOLOR=1 export CLICOLOR=1
alias ll='ls -lh' alias ll='ls -lh'
source ~/.zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
#source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme source ~/.zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
#[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export FZF_DEFAULT_COMMAND='git ls-files --cached --others --exclude-standard 2>/dev/null|fd -H' export FZF_DEFAULT_COMMAND='git ls-files --cached --others --exclude-standard 2>/dev/null|fd -H'