dotfiles-mirror/.zshrc

23 lines
644 B
Bash
Raw Permalink Normal View History

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-09-30 15:21:19 +03:30
source ~/.local/zsh/zsh-autosuggestions.zsh
2025-10-06 12:06:53 +03:30
source ~/.local/zsh/zsh-syntax-highlighting/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
PATH=$PATH:/home/coast/.spicetify
2025-08-06 07:46:44 +03:30
2025-09-30 15:21:19 +03:30
PROMPT="[%n@%m %~]%% "