-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
36 lines (29 loc) · 837 Bytes
/
.zshrc
File metadata and controls
36 lines (29 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This fixed the behavior of "Enter" on "git add . -p",
# at least on macOS:
stty icrnl
# Raise the limit of simultaneous opened files. Fixes some Capybara/ChromeDriver tests
ulimit -n 65536
# Homebrew
export HOMEBREW_NO_AUTO_UPDATE=1
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
# Telemetry
export GATSBY_TELEMETRY_DISABLED=1
export HOMEBREW_NO_ANALYTICS=1
export STNOUPGRADE=1
export DOTNET_CLI_TELEMETRY_OPTOUT=1
export SAM_CLI_TELEMETRY=1
export AZURE_CORE_COLLECT_TELEMETRY=1
export DO_NOT_TRACK=1
# Go
export PATH="$HOME/go/bin:$PATH"
# JobScore
export IGNORE_COV='true'
export HUSKY_SKIP_INSTALL=1
export THOR_SILENCE_DEPRECATION=1
# Fix macOS -> Ubuntu connection using Mosh
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
alias t='task'
alias be='bundle exec'
alias r='bundle exec rails'