22 lines
807 B
Bash
22 lines
807 B
Bash
#!/bin/zsh
|
|
. /etc/profile
|
|
HISTFILE=$HOME/.cache/zsh/history
|
|
SAVEHIST=100000000
|
|
HISTSIZE=$SAVEHIST
|
|
setopt appendhistory
|
|
autoload -U compinit
|
|
zstyle ':completion:*' menu select
|
|
zmodload zsh/complist
|
|
compinit
|
|
comp_options+=(globdots)
|
|
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
|
|
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
|
|
autoload -U colors && colors && setopt prompt_subst
|
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=5"
|
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=12"
|
|
LIBCLANG_PATH=/usr/lib/llvm/20/lib64
|
|
source ~/.zprofile
|
|
#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
|
|
eval "$(starship init zsh)"
|
|
|