Skip to content

Commit 00f3cdd

Browse files
author
Sam McLeod
committed
[automated commit or incremental update]
1 parent f2fdfc3 commit 00f3cdd

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

5-exports.rc

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@
44
export SAM_CLI_TELEMETRY=0 TELEMETRY=0 ENABLE_TELEMETRY=0 SEND_TELEMETRY=0 DO_NOT_TRACK=1 ANALYTICS=0 DISABLE_ANALYTICS=1 NO_ANALYTICS=1 DOTNET_CLI_TELEMETRY_OPTOUT=1 # General catch-all
55
export GREP_OPTIONS="--color"
66
# export LSCOLORS="ExFxCxDxBxegedabagacad"
7-
export LS_COLORS="$(vivid generate dracula)"
87
export CLICOLOR=1
98
export GOPATH="${HOME}/go"
109
export XZ_OPT="--threads=8"
1110
export MU_REPO_SERIAL=false
12-
export EDITOR=vim
11+
LS_COLORS="$(vivid generate dracula)"
12+
export LS_COLORS
13+
14+
if [ -x "/usr/local/bin/zed" ]; then
15+
export EDITOR="/usr/local/bin/zed"
16+
else
17+
export EDITOR="vim"
18+
fi
1319

1420
# Tells 'less' not to paginate if less than a page
1521
export LESS="-F -X $LESS"

zshrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ fpath+=~/.zfunc
127127
export PATH="/opt/homebrew/opt/tcl-tk@8/bin:$PATH"
128128

129129
# # The next line updates PATH for the Google Cloud SDK.
130-
if [ -f '/Users/samm/Downloads/google-cloud-sdk/path.zsh.inc' ] && if_not_in_vscode; then . '/Users/samm/Downloads/google-cloud-sdk/path.zsh.inc'; fi
130+
# if [ -f '/Users/samm/Downloads/google-cloud-sdk/path.zsh.inc' ] && if_not_in_vscode; then . '/Users/samm/Downloads/google-cloud-sdk/path.zsh.inc'; fi
131131

132132
# The next line enables shell command completion for gcloud.
133-
if [ -f '/Users/samm/Downloads/google-cloud-sdk/completion.zsh.inc' ] && if_not_in_vscode; then . '/Users/samm/Downloads/google-cloud-sdk/completion.zsh.inc'; fi
133+
# if [ -f '/Users/samm/Downloads/google-cloud-sdk/completion.zsh.inc' ] && if_not_in_vscode; then . '/Users/samm/Downloads/google-cloud-sdk/completion.zsh.inc'; fi
134134

135135
# # Amazon Q post block. Keep at the bottom of this file.
136136
if [[ "$LOADING_Q" == "true" ]]; then

0 commit comments

Comments
 (0)