From e4be2942bb3b2b0cbe8f26f59b1a33192579bab1 Mon Sep 17 00:00:00 2001 From: vladmandic Date: Sat, 24 Jan 2026 09:13:23 +0100 Subject: [PATCH] update config Signed-off-by: vladmandic --- .gitconfig | 20 ++++++++++++++++++++ .vscode/launch.json | 1 - .vscode/settings.json | 1 + 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 000000000..a284fb849 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,20 @@ +[pull] + rebase = true +[https] + postBuffer = 100000000 +[filter "lfs"] + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f + process = git-lfs filter-process + required = true +[init] + defaultBranch = master +[color] + ui = auto +[alias] + lg = log --color --abbrev-commit --graph --pretty=format:'%C(bold blue)%h%C(reset) %C(blue)%an%C(reset) %C(yellow)%ci %cr%C(reset) %C(green)%d%C(reset) %s' +[core] + editor = code --wait + whitespace = trailing-space,space-before-tab,indent-with-non-tab,-tab-in-indent,cr-at-eol + autocrlf = input + eol = lf diff --git a/.vscode/launch.json b/.vscode/launch.json index ea264d51d..d85f85ea9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -11,7 +11,6 @@ "env": { "USED_VSCODE_COMMAND_PICKARGS": "1" }, "args": [ "--uv", - "--quick", "--log", "vscode.log", "${command:pickArgs}"] } diff --git a/.vscode/settings.json b/.vscode/settings.json index 924535e5a..62f9cdd0b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { + "files.eol": "\n", "python.analysis.extraPaths": [".", "./modules", "./scripts", "./pipelines"], "python.analysis.typeCheckingMode": "off", "editor.formatOnSave": false,