mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
Remove needless semi-colons
This commit is contained in:
2
zshenv
2
zshenv
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
# Enable ZSH profiling?
|
# Enable ZSH profiling?
|
||||||
if [[ -n "$ZPROF" ]]; then
|
if [[ -n "$ZPROF" ]]; then
|
||||||
zmodload zsh/zprof;
|
zmodload zsh/zprof
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Ensure values in path variable are unique
|
# Ensure values in path variable are unique
|
||||||
|
|||||||
2
zshrc
2
zshrc
@@ -6,7 +6,7 @@
|
|||||||
# /etc to avoid /etc/zprofile messing up our carefully constructed PATH. So we
|
# /etc to avoid /etc/zprofile messing up our carefully constructed PATH. So we
|
||||||
# need to manually load the other files we care about.
|
# need to manually load the other files we care about.
|
||||||
if [[ "$OSTYPE" == "darwin"* ]] && [ -f "/etc/zshrc" ]; then
|
if [[ "$OSTYPE" == "darwin"* ]] && [ -f "/etc/zshrc" ]; then
|
||||||
source "/etc/zshrc";
|
source "/etc/zshrc"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user