From 2994c78850f01ed4dbfa11690c08b8e5ed7b199d Mon Sep 17 00:00:00 2001 From: roottool Date: Sun, 14 Dec 2025 21:15:07 +0900 Subject: [PATCH] chore: Add abbr for git --- dot_config/zabrze/config.yaml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dot_config/zabrze/config.yaml b/dot_config/zabrze/config.yaml index a0a455b..c8b821c 100644 --- a/dot_config/zabrze/config.yaml +++ b/dot_config/zabrze/config.yaml @@ -3,6 +3,16 @@ abbrevs: - name: git abbr: g snippet: git + - name: git fetch + abbr: f + snippet: fetch + context: '^git\s' + global: true + - name: git status + abbr: s + snippet: status + context: '^git\s' + global: true - name: git branch abbr: b snippet: branch @@ -18,6 +28,31 @@ abbrevs: snippet: checkout context: '^git\s' global: true + - name: git checkout -b + abbr: chb + snippet: checkout -b + context: '^git\s' + global: true + - name: git switch + abbr: sw + snippet: switch + context: '^git\s' + global: true + - name: git switch -c + abbr: swc + snippet: switch -c + context: '^git\s' + global: true + - name: git switch -t + abbr: swt + snippet: switch -t + context: '^git\s' + global: true + - name: git switch - + abbr: sw- + snippet: switch - + context: '^git\s' + global: true - name: git commit abbr: c snippet: commit