formatting
This commit is contained in:
@@ -20,7 +20,7 @@ if [ -d "$HOME/.bin" ]; then
|
|||||||
export PATH="$HOME/.bin:$PATH"
|
export PATH="$HOME/.bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fpath=("$HOME/.zsh/zsh-completions/src" $fpath)
|
fpath=("$HOME/.zsh/zsh-completions/src" "$fpath")
|
||||||
|
|
||||||
# Editor
|
# Editor
|
||||||
export EDITOR='nvim'
|
export EDITOR='nvim'
|
||||||
@@ -100,7 +100,7 @@ case $(uname -s) in
|
|||||||
|
|
||||||
eval "$(brew shellenv)"
|
eval "$(brew shellenv)"
|
||||||
|
|
||||||
[[ ! -f $(which gdircolors) ]] || $(test -f "$HOME/.dircolors" && eval $(gdircolors "$HOME/.dircolors") || eval $(gdircolors))
|
[[ ! -f "$(which gdircolors)" ]] || test -f "$HOME/.dircolors" && eval "$(gdircolors "$HOME/.dircolors")" || eval "$(gdircolors)"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
Linux)
|
Linux)
|
||||||
@@ -111,7 +111,7 @@ case $(uname -s) in
|
|||||||
ubuntu
|
ubuntu
|
||||||
)
|
)
|
||||||
|
|
||||||
test -f "$HOME/.dircolors" && eval $(dircolors -b "$HOME/.dircolors") || eval $(dircolors -b)
|
test -f "$HOME/.dircolors" && eval "$(dircolors -b "$HOME/.dircolors")" || eval "$(dircolors -b)"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*) ;;
|
*) ;;
|
||||||
|
|||||||
Reference in New Issue
Block a user