diff options
-rw-r--r-- | .zprofile | 2 | ||||
-rw-r--r-- | .zshrc | 15 |
2 files changed, 14 insertions, 3 deletions
@@ -5,6 +5,6 @@ if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then exec startx fi -export EDITOR="emacsclient" +export EDITOR="emacs" export TERMINAL="alacriy" export BROWSER="usr/bin/qutebrowser" @@ -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 |