1
0
mirror of https://github.com/akelge/zsh synced 2025-07-14 17:52:09 +00:00

2 Commits

Author SHA1 Message Date
653379ec31 I need to eat more fish 2024-10-30 13:32:12 +01:00
bb17543bb6 hotfix 2024-10-30 13:31:03 +01:00

6
zshrc
View File

@ -6,11 +6,12 @@
#
# Global Order: zshenv, zprofile, zshrc, zlogin
#
#
# Load zprof if we need to profile startup time
# at the bottom of ~/.zshrc add `zprof >! zsh_profile` to save
# profiling data at startup
zmodload zsh/zprof
# zmodload zsh/zprof
# Default PATH
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:$HOME/bin"
@ -26,10 +27,9 @@ local BASE="/etc"
local LIBRARY=${BASE}/zsh.d
# local KERNEL=`uname -s`
local KERNLIB=${LIBRARY}/$(uname -s)
for lib in $LIBRARY $KERNLIB; do
for lib in $KERNLIB $LIBRARY; do
[ -d $lib/zshfunctions ] && fpath=($lib/zshfunctions $fpath)
[ -d $lib/completions ] && fpath=($lib/completions $fpath)