Commit 312a45ca9c0dab5159544f29ecff97d339367cce
1 parent
e3023e8ed5
Exists in
master
and in
1 other branch
[IMP] environment.sh: SET COMPRESSION LEVELS (gzip && xz, 7z, lzma)
Showing 1 changed file with 6 additions and 0 deletions Inline Diff
dotfiles/environment.sh
| 1 | #@IgnoreInspection AddShebang | 1 | #@IgnoreInspection AddShebang |
| 2 | 2 | ||
| 3 | # git: | 3 | # git: |
| 4 | export GIT_AUTHOR_NAME="mj" | 4 | export GIT_AUTHOR_NAME="mj" |
| 5 | export GIT_AUTHOR_EMAIL="mj@str8.biz" | 5 | export GIT_AUTHOR_EMAIL="mj@str8.biz" |
| 6 | export GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME | 6 | export GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME |
| 7 | export GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL | 7 | export GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL |
| 8 | |||
| 9 | # gzip: | ||
| 10 | export GZIP = -9 | ||
| 11 | |||
| 12 | # 7z, xz, lzma: | ||
| 13 | export XZ_OPT = -9 | ||
| 8 | 14 |