From 3cdcd3a724c52868f81a961ecfaba0e7a9c9f158 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Mon, 18 Mar 2024 11:59:50 +0100 Subject: [PATCH] git: add .DS_Store files to global ignore --- home/common.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home/common.nix b/home/common.nix index 2156be7..8cfe5a1 100644 --- a/home/common.nix +++ b/home/common.nix @@ -50,7 +50,8 @@ merge.tool = "vimdiff"; core.excludesfile = toString ( pkgs.writeText ".gitignore_global" '' - # Direnv stuff + # Direnv stuff # + ################ .direnv .envrc # Editor files # @@ -58,6 +59,9 @@ *~ *.swp *.swo + # macOS foo # + ############# + .DS_Store '' ); core.whitespace = "-blank-at-eol,blank-at-eof,space-before-tab";