Настройка личных данных
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,3 +6,6 @@
|
||||
.zcompdump*
|
||||
*.zwc
|
||||
!apps.d
|
||||
!net.d
|
||||
secrets.d/*
|
||||
|
||||
|
||||
7
.zshrc
7
.zshrc
@@ -21,8 +21,7 @@ for S in \
|
||||
78-keybindings \
|
||||
82-completion \
|
||||
88-prompt \
|
||||
95-finish
|
||||
do
|
||||
95-finish; do
|
||||
N="${S//[0-9\-]/}"
|
||||
if [[ -r "$ZDOTDIR/$S.pre.zsh" ]]; then source "$ZDOTDIR/$S.pre.zsh"; fi
|
||||
if [[ -r "$ZDOTDIR/$S.zsh" ]]; then source "$ZDOTDIR/$S.zsh"; fi
|
||||
@@ -34,5 +33,7 @@ done
|
||||
mkdir -p "$ZDOTDIR/apps.d"
|
||||
find "$ZDOTDIR/apps.d" -name "*.zsh" -print0 | sort -z | while IFS= read -r -d $'\0' app; do source "$app"; done
|
||||
|
||||
# zprof
|
||||
mkdir -p "$ZDOTDIR/secrets.d"
|
||||
find "$ZDOTDIR/secrets.d" -name "*.zsh" -print0 | sort -z | while IFS= read -r -d $'\0' secret; do source "$secret"; done
|
||||
|
||||
# zprof
|
||||
|
||||
Reference in New Issue
Block a user