-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.lazygit
36 lines (36 loc) · 1.01 KB
/
.lazygit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
git:
paging:
colorArg: always
pager: delta --paging=never
pull:
mode: rebase
commitPrefixes:
ansible:
pattern: "^(\\d+)-(.+)"
replace: '$1 '
branchLogCmd: "git log --graph --color=always --abbrev-commit --decorate --date=relative --pretty=medium --oneline {{branchName}} --"
gui:
scrollHeight: 10 # how many lines you scroll by
scrollPastBottom: true # enable scrolling past the bottom
showFileTree: false
expandFocusedSidePanel: true
theme:
selectedLineBgColor:
- reverse
selectedRangeBgColor:
- reverse
skipHookPrefix: ''
customCommands:
- key: "<c-r>"
command: "hub pull-request -p --no-edit -o"
context: "global"
loadingText: "Creating pull request on GitHub"
- key: "<c-n>"
context: "localBranches"
prompts:
- type: 'input'
title: 'What is the new branch name?'
initialValue: ''
command: "git checkout master && git pull && git checkout -b {{index .PromptResponses 0}}"
loadingText: "Creating branch"