configs  Check-in [959dca6ec3]

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: 959dca6ec309b211710a1f16b0a4be1da9d133c3532eb809f78f3f7c6e956909
User & Date: js on 2024-08-18 16:46:27
Other Links: manifest | tags
Context
2024-09-01
17:18
gnome-terminal: Make text slightly darker Leaf 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

Modified setup.sh from [7c71664bf0] to [0aa3678ce6].

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