-
Notifications
You must be signed in to change notification settings - Fork 9
/
.exports
30 lines (26 loc) · 1.16 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
# M$ BS
export DOTNET_CLI_TELEMETRY_OPTOUT=1
# Qualtrak evaluate saas env vars:
export ENVIRONMENT=Local
export DB_DNS=localhost
export DB_PORT=1433
export DB_NAME=evaluate
export DB_USERNAME=EvaluateUser
export DB_PASSWORD=password
export LOG_ROOT_PATH=.config/qualtrak
export RELEASE_VERSION=1.0.0
export CLIENT=qualtrak
# Bash history settings.
export HISTTIMEFORMAT="%F %T " # the format is from date command
export HISTCONTROL=ignoredups # no duplicate entries
export HISTSIZE=2000 # big history (default is 500)
# Save and reload the history after each command finishes in another bash session.
#export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
# Highlighting inside manpages and elsewhere.
export LESS_TERMCAP_mb=$'\e[1;31m' # start blinking
export LESS_TERMCAP_md=$'\e[1;34m' # start bold mode
export LESS_TERMCAP_me=$'\e[0m' # end all mode
export LESS_TERMCAP_so=$'\e[38;5;215m' # start standout mode
export LESS_TERMCAP_se=$'\e[0m' # end standout mode
export LESS_TERMCAP_us=$'\e[4;35m' # start underline
export LESS_TERMCAP_ue=$'\e[0m' # end underline