Add simple zsh with powerlevel10k

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-02 16:10:15 +02:00
parent 572727a8e8
commit 2cd84ca1af
3 changed files with 1557 additions and 3 deletions

View file

@ -1,14 +1,13 @@
alias lime2connect='ssh flyingscorpio@2px.info'
alias fish='fish ~/.config/fish/functions/my_aliases.fish && fish'
alias rm='rm -I --preserve-root'
alias grep='grep --color=auto'
alias ls='ls --color=auto'
alias ll='ls -lh'
alias lla='ls -lArth'
alias la='ls -A'
alias l='ls -CF'
alias ccat='highlight --out-format=ansi' # color cat with syntax highlighting
if [ -x /bin/vim ] && [ ! -x /bin/vi ]; then
alias vi='vim'
fi

1548
dotfiles/zsh/p10k.zsh Normal file

File diff suppressed because it is too large Load diff

7
dotfiles/zsh/zshrc Normal file
View file

@ -0,0 +1,7 @@
# PROMPT
source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
# ALIASES
[[ ! -f ~/.zsh_aliases ]] || source ~/.zsh_aliases