refactored some stuff
This commit is contained in:
parent
273036b1bc
commit
85b089d958
1 changed files with 23 additions and 0 deletions
23
zsh/rc.zsh
Normal file
23
zsh/rc.zsh
Normal file
|
@ -0,0 +1,23 @@
|
|||
export path=($path $HOME/.config/dotfiles/bin)
|
||||
export fpath=($fpath $ZDOTDIR/local/fpath)
|
||||
|
||||
export os=$(grep -E "^ID=" /etc/*release | cut -d= -f2)
|
||||
export wsl=$(uname -r | cut -d'-' -f3)
|
||||
|
||||
source "$ZDOTDIR/dircolor.zsh"
|
||||
|
||||
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||
|
||||
mkdir -p $HOME/.cache/zsh
|
||||
autoload -Uz compinit bashcompinit
|
||||
compinit -d $HOME/.cache/zsh/compdump
|
||||
bashcompinit
|
||||
|
||||
for file in $ZDOTDIR/files/*.zsh; do source "$file"; done
|
||||
|
||||
[[ -f "$ZDOTDIR/local/rc.zsh" ]] && source "$ZDOTDIR/local/rc.zsh"
|
||||
|
||||
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
|
||||
export STARSHIP_CONFIG=$ZDOTDIR/starship.toml
|
||||
eval "$(starship init zsh)"
|
Loading…
Add table
Reference in a new issue