From a85660ccdcccd74910f9db26aa9b29b61c13993d Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 30 Aug 2022 12:05:37 +0200 Subject: [PATCH] move gitconfig to top of home --- git/{.config/git/config => .gitconfig} | 4 +++- git/{.config/git/ignore => .gitignore} | 0 2 files changed, 3 insertions(+), 1 deletion(-) rename git/{.config/git/config => .gitconfig} (84%) rename git/{.config/git/ignore => .gitignore} (100%) diff --git a/git/.config/git/config b/git/.gitconfig similarity index 84% rename from git/.config/git/config rename to git/.gitconfig index eaadbf7..8b779a1 100644 --- a/git/.config/git/config +++ b/git/.gitconfig @@ -4,7 +4,7 @@ signingkey = 89A36EAC3D3F4AF7 [core] compression = 9 - excludesfile = ~/.config/git/ignore + excludesfile = ~/.gitignore pager = less -F -X #pager = cat [color] @@ -19,3 +19,5 @@ autocorrect = 1 [init] defaultBranch = main +[cola] + spellcheck = false diff --git a/git/.config/git/ignore b/git/.gitignore similarity index 100% rename from git/.config/git/ignore rename to git/.gitignore