Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions dot_config/zabrze/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down