-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.exports
65 lines (52 loc) · 2.15 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env bash
# Credit to https://github.com/jessfraz/dotfiles
# and to https://github.com/paulirish/dotfiles
# and to https://github.com/mathiasbynens/dotfiles
# Set bash as our shell, idk why anyone would use something else ;)
# shell="$(which bash)"
# export SHELL="$shell"
# Make vim the default editor
export EDITOR='vim'
# Larger bash history (allow 32³ entries; default is 500)
export HISTSIZE=50000000
export HISTFILESIZE="$HISTSIZE"
export HISTCONTROL='ignoredups'
# Append last command to history immediately
export PROMPT_COMMAND='history -a'
# Make some commands not show up in history
# export HISTIGNORE=' *:ls:cd:cd -:pwd:exit:date:* --help:* -h:pony:pony add *:pony update *:pony save *:pony ls:pony ls *'
# Prefer US English and use UTF-8
export LANG='en_US.UTF-8'
export LC_ALL='en_US.UTF-8'
# Don’t clear the screen after quitting a manual page
export PAGER='less -RFX'
export MANPAGER="$PAGER"
export MAN_PAGER="$PAGER"
export BAT_PAGER="$PAGER"
# force color output
export CLICOLOR_FORCE=1
# highlighting inside manpages and elsewhere
export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking
export LESS_TERMCAP_md=$'\E[01;38;5;74m' # begin bold
export LESS_TERMCAP_me=$'\E[0m' # end mode
export LESS_TERMCAP_se=$'\E[0m' # end standout-mode
export LESS_TERMCAP_so=$'\E[38;5;246m' # begin standout-mode - info box
export LESS_TERMCAP_ue=$'\E[0m' # end underline
export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline
# export LESS_TERMCAP_mb=$'\E[1;31m'
# export LESS_TERMCAP_md=$'\E[1;31m'
# export LESS_TERMCAP_me=$'\E[0m'
# export LESS_TERMCAP_se=$'\E[0m'
# export LESS_TERMCAP_so=$'\E[1;44;33m'
# export LESS_TERMCAP_ue=$'\E[0m'
# export LESS_TERMCAP_us=$'\E[1;32m'
# general homebrew settings
export HOMEBREW_NO_ANALYTICS=1
export HOMEBREW_CASK_OPTS='--appdir=/Applications'
# Make Python use UTF-8 encoding for output to stdin, stdout, and stderr.
export PYTHONIOENCODING='UTF-8'
# Avoid issues with `gpg` as installed via Homebrew.
# https://stackoverflow.com/a/42265848/96656
export GPG_TTY="$(tty)"
# Hide the “default interactive shell is now zsh” warning on macOS.
export BASH_SILENCE_DEPRECATION_WARNING=1