-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell_env
More file actions
64 lines (48 loc) · 1.96 KB
/
shell_env
File metadata and controls
64 lines (48 loc) · 1.96 KB
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
# vim: set filetype=sh:
export GEM_HOME=$HOME/.gem
PATH="$HOME/.cabal/bin:$HOME/.local/bin:$HOME/bin:/usr/local/sbin:/usr/local/bin:$HOME/.composer/vendor/bin:$PATH"
if [ "$ALIX_PLATFORM" = "Darwin" ]; then
PATH="$HOME/.gem/bin:$PATH"
fi
# We looove Debian
# http://qa.debian.org/developer.php?login=hashar@free.fr
export DEBFULLNAME="Antoine Musso"
export DEBEMAIL="hashar@free.fr"
#################### COLORED MAN ######################################
# less env variables to make less a bit nicer to read
# https://wiki.archlinux.org/index.php/Man_Page#Colored_man_pages
# TODO: grab colors from Debian
export LESS_TERMCAP_mb=$(printf "\e[1;31m")
export LESS_TERMCAP_md=$(printf "\e[1;31m")
export LESS_TERMCAP_me=$(printf "\e[0m")
export LESS_TERMCAP_se=$(printf "\e[0m")
export LESS_TERMCAP_so=$(printf "\e[1;44;33m")
export LESS_TERMCAP_ue=$(printf "\e[0m")
export LESS_TERMCAP_us=$(printf "\e[1;32m")
#################### Personal preferences #############################
export PAGER="less"
export EDITOR="vim"
export VISUAL="vim"
# Override messages to use the "C" language
# Ever tried googling an error message in French? :-D
export LC_MESSAGES="C"
if [ "$ALIX_PLATFORM" = "Darwin" ]; then
# Lighter directory in Mac OS X ls output
#export LSCOLORS="gx"
export LSCOLORS="eh"
fi
# fancy MySQL prompt
export MYSQL_PS1="(\u@\h) [\d]> "
# It can already be set, eg by `quibble -c bash`
export MW_INSTALL_PATH=${MW_INSTALL_PATH:-/home/hashar/projects/mediawiki/core}
export PIP_BREAK_SYSTEM_PACKAGES=1
# Running podman rootless (systemctl --user status podman)
export DOCKER_HOST=unix:///run/user/1000/podman/podman.sock
# Buildkit defaults to dark blue which is barely readable against a dark
# background.
export BUILDKIT_COLORS="run=cyan"
# Give more log lines, default being 6
export BUILDKIT_TTY_LOG_LINES=12
# Instruct Python requests to use the system certificate. That saves one from
# having to rely on certifi.
export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt