Single-script builder (nosignal.sh) that turns a stock Arch Linux ISO into a fully-offline installer for a themed Hyprland + caelestia (Quickshell) desktop: matching SDDM greeter, Btrfs/Limine bootable snapshots, chwd-style GPU detection, and a curated "os updates" layer (keybind cheatsheet, settings panels, system polish, on-box management skill). See README.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
28 lines
921 B
Text
Executable file
28 lines
921 B
Text
Executable file
# See https://git-scm.com/docs/git-config
|
|
|
|
[alias]
|
|
co = checkout
|
|
br = branch
|
|
ci = commit
|
|
st = status
|
|
[init]
|
|
defaultBranch = master
|
|
[pull]
|
|
rebase = true # Rebase (instead of merge) on pull
|
|
[push]
|
|
autoSetupRemote = true # Automatically set upstream branch on push
|
|
[diff]
|
|
algorithm = histogram # Clearer diffs on moved/edited lines
|
|
colorMoved = plain # Highlight moved blocks in diffs
|
|
mnemonicPrefix = true # More intuitive refs in diff output
|
|
[commit]
|
|
verbose = true # Include diff comment in commit message template
|
|
[column]
|
|
ui = auto # Output in columns when possible
|
|
[branch]
|
|
sort = -committerdate # Sort branches by most recent commit first
|
|
[tag]
|
|
sort = -version:refname # Sort version numbers as you would expect
|
|
[rerere]
|
|
enabled = true # Record and reuse conflict resolutions
|
|
autoupdate = true # Apply stored conflict resolutions automatically
|