2025-06-14 19:50:32 +03:30
|
|
|
#!/bin/zsh
|
2025-08-01 15:47:10 +03:30
|
|
|
. /etc/profile
|
2025-05-29 22:33:42 +02:00
|
|
|
HISTFILE=$HOME/.cache/zsh/history
|
|
|
|
SAVEHIST=100000000
|
|
|
|
HISTSIZE=$SAVEHIST
|
|
|
|
setopt appendhistory
|
|
|
|
autoload -U compinit
|
|
|
|
zstyle ':completion:*' menu select
|
|
|
|
zmodload zsh/complist
|
|
|
|
compinit
|
2025-06-04 04:38:36 +03:30
|
|
|
comp_options+=(globdots)
|
2025-06-10 14:26:39 +03:30
|
|
|
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
|
2025-06-28 08:39:50 +03:30
|
|
|
source /usr/share/zsh/site-functions/zsh-autosuggestions.zsh && fpath=(/usr/share/zsh/site-functions $fpath) && source /usr/share/zsh/site-functions/zsh-syntax-highlighting.zsh
|
2025-06-04 04:38:36 +03:30
|
|
|
autoload -U colors && colors && setopt prompt_subst
|
2025-06-04 07:57:39 +03:30
|
|
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=5"
|
|
|
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=12"
|
2025-08-05 13:09:55 +03:30
|
|
|
LIBCLANG_PATH=/usr/lib/llvm/20/lib64
|
2025-07-03 16:49:14 +03:30
|
|
|
source ~/.zprofile
|
2025-08-05 13:09:55 +03:30
|
|
|
#PS1="%B%F{#f0f0f0}[%F{#ff5f5f}%n%F{#f0f0f0}@%M %F{#5fafff}%~%F{#f0f0f0}]%f%F{#fe8019}%B%%%b%f "
|
|
|
|
PATH=$PATH:/home/coast/.spicetify
|
2025-08-02 11:43:36 +03:30
|
|
|
eval "$(starship init zsh)"
|
2025-08-06 07:46:44 +03:30
|
|
|
|