summaryrefslogtreecommitdiff
path: root/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc15
1 files changed, 13 insertions, 2 deletions
diff --git a/.zshrc b/.zshrc
index 347b521..74b9460 100644
--- a/.zshrc
+++ b/.zshrc
@@ -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