jj/demos/setup_standard_config.sh
Ilya Grigoriev 5e697dc1f3 demos: make jj perform the line wrapping instead of term-transcript
Previously, `jj` couldn't determine the terminal widths inside demos.
2023-10-03 23:52:28 -07:00

29 lines
565 B
Bash

# This script is meant to be run with `source` from a fresh bash
# shell. Thus no shebang.
# shellcheck shell=bash
set -euo pipefail
JJ_CONFIG=$(mktemp --tmpdir jjconfig-XXXX.toml)
export JJ_CONFIG
cat <<'EOF' > "$JJ_CONFIG"
[user]
name = "JJ Fan"
email = "jjfan@example.com"
[operation]
hostname = "jujube"
username = "jjfan"
[ui]
color="always"
paginate="never"
log-word-wrap=true # Need to set COLUMNS for this to work
EOF
GIT_CONFIG_GLOBAL=$(mktemp --tmpdir gitconfig-XXXX)
export GIT_CONFIG_GLOBAL
cat <<'EOF' > "$GIT_CONFIG_GLOBAL"
[color]
ui=always
EOF