-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.exports
executable file
·44 lines (36 loc) · 1.22 KB
/
.exports
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
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
# Set the default editor
#if [ -f /usr/local/bin/gvim ]; then
# export EDITOR='gvim'
#elif [ -f /usr/local/bin/subl ]; then
# export EDITOR='subl'
#fi
export EDITOR="vim"
# Larger bash history (allow 32³ entries; default is 500)
export HISTSIZE=32768
export HISTFILESIZE=$HISTSIZE
export HISTCONTROL=ignoreboth
export HISTTIMEFORMAT="%Y.%m.%d.%H:%M:%S "
# Make some commands not show up in history
export HISTIGNORE="ls:cd:cd -:pwd:exit:date:* --help"
# Prefer US English and use UTF-8
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
# Highlight section titles in manual pages
export LESS_TERMCAP_md="$ORANGE"
# Don’t clear the screen after quitting a manual page, aws, or journalctl
export AWS_PAGER=cat
export GITPAGER=cat
export MANPAGER=more
export PAGER=cat
export SYSTEMD_PAGER="less -r"
# https://github.com/Homebrew/brew/pull/13299 (3.5 update); 3/5/23 deprecated b/c API broken
#export HOMEBREW_UPDATE_REPORT_ALL_FORMULAE=true
# export RUBY_CONFIGURE_OPTS="--with-openssl-dir=$(brew --prefix [email protected])"
# Go
#export GOPATH="/usr/local/go" # default to ~/go
export GOROOT="/usr/local/go"
# Fix psycopg2 on 10.7.3
export PGHOST=/tmp
# no ._ files in archives please
export COPYFILE_DISABLE=true