diff options
author | ThanosApollo <[email protected]> | 2022-08-14 17:09:50 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-08-14 17:09:50 +0300 |
commit | 53f5b74f4b1b7fa2cff27da657c6e405576471cf (patch) | |
tree | 716299fc500cb3880c677e9fbe5e0a17115c7966 /.zshrc | |
parent | ddf06edd4a915b20182eee8002d090aa00552b81 (diff) |
update zsh
Diffstat (limited to '.zshrc')
-rw-r--r-- | .zshrc | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -1,6 +1,12 @@ + +# Starting message +starting(){ + screenfetch | lolcat + echo "Welcome, $USER" | lolcat +} ### export PATH="$HOME/.emacs.d/bin:$PATH" - +fpath=(/home/apollo/.cache/paru/clone/zsh-completions-git/zsh-completions $fpath) ## PROMPT eval "$(starship init zsh)" # enable hook method @@ -40,7 +46,7 @@ alias ls='ls --color=auto' alias sb='sudo systemctl start bluetooth' alias mykeys='setxkbmap -option caps:escape' alias logout='pkill -U' -alias neofetch='neofetch | lolcat' +#alias neofetch='neofetch | lolcat' alias b='bluetoothctl' alias ba='bluetooth-autoconnect' @@ -95,3 +101,8 @@ zle -N down-line-or-beginning-search [[ -n "${key[Up]}" ]] && bindkey -- "${key[Up]}" up-line-or-beginning-search [[ -n "${key[Down]}" ]] && bindkey -- "${key[Down]}" down-line-or-beginning-search + +#Syntax highlight +source /home/apollo/.zsh_hl/zsh-syntax-highlighting.zsh + +starting |