diff options
| author | Christian Cleberg <[email protected]> | 2026-02-08 11:52:31 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-02-08 11:52:31 -0600 |
| commit | af4b92b972bfcb8bd67d8132c953e6fbb1d02296 (patch) | |
| tree | 9df9f43a1003b8a67cf1d2c036af9cb7b41c9db4 /git | |
| parent | ab794ba43632d7e966999be63bfcc832614daf04 (diff) | |
| download | dotfiles-af4b92b972bfcb8bd67d8132c953e6fbb1d02296.tar.gz dotfiles-af4b92b972bfcb8bd67d8132c953e6fbb1d02296.tar.bz2 dotfiles-af4b92b972bfcb8bd67d8132c953e6fbb1d02296.zip | |
format ZSH and update Git
Diffstat (limited to 'git')
| -rw-r--r-- | git/.gitconfig | 1 | ||||
| -rw-r--r-- | git/.gitignore_global | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/git/.gitconfig b/git/.gitconfig index 2792bce..ea494ad 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -4,6 +4,7 @@ email = [email protected] signingkey = [email protected] [core] + excludesfile = ~/.gitignore_global editor = emacs autocrlf = input untrackedCache = true diff --git a/git/.gitignore_global b/git/.gitignore_global new file mode 100644 index 0000000..5abac3e --- /dev/null +++ b/git/.gitignore_global @@ -0,0 +1,29 @@ +# macOS +.DS_Store +.AppleDouble +.LSOverride + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Editors +*.swp +*.swo +*~ +.vscode/ +.idea/ + +# Common logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* |
