Overview
Comment: | setup.sh: Unset local autosync |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
959dca6ec309b211710a1f16b0a4be1d |
User & Date: | js 2024-08-18 16:46:27 |
Context
2024-09-01
| ||
17:18 | gnome-terminal: Make text slightly darker check-in: b1ef7793c2 user: js tags: trunk | |
2024-08-18
| ||
16:46 | setup.sh: Unset local autosync check-in: 959dca6ec3 user: js tags: trunk | |
16:44 | zshrc: Use Unicode for → check-in: 99d79d7256 user: js tags: trunk | |
Changes
Changes to setup.sh.
︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | export GNUPGHOME="$XDG_DATA_HOME/gnupg" mkdir -p $HOME/.config have cvs && link_file cvsrc .cvsrc if have fossil; then echo "Setting global fossil settings…" fossil set --global autosync 0 fossil set --global editor 'vim -c "se ft=gitcommit"' fossil set --global mv-rm-files 1 if have gpg2; then gpg="gpg2" elif have gpg; then | > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | export GNUPGHOME="$XDG_DATA_HOME/gnupg" mkdir -p $HOME/.config have cvs && link_file cvsrc .cvsrc if have fossil; then echo "Setting global fossil settings…" fossil unset autosync fossil set --global autosync 0 fossil set --global editor 'vim -c "se ft=gitcommit"' fossil set --global mv-rm-files 1 if have gpg2; then gpg="gpg2" elif have gpg; then |
︙ | ︙ |