aboutsummaryrefslogtreecommitdiff
path: root/files/.config/lazygit/config.yml
blob: 9c4b4949cb0d5623d22e504f90b414eec2a9386e (plain) (blame)
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
37
38
39
40
41
42
43
44
45
---
gui:
  nerdFontsVersion: "3"
  theme:
    lightTheme: true
  branchColors:
    'develop': '#ff2222'
  animateExplosion: false
git:
  paging:
    colorArg: always
    pager: diff-so-fancy
    externalDiffCommand: difft --color=always --background=light
  commitPrefixes:
    gazprom:
      pattern: "^(\\d+)-.*"
      replace: "feat: #$1 "
  # branchLogCmd: "git lg --color=always --no-merges --graph {{branchName}} --"
services:
  'git.technocom.tech': 'gitea:git.technocom.tech'
keybinding:
  commits:
    moveDownCommit: '<c-n>'
    moveUpCommit: '<c-p>'
customCommands:
  - key: '<c-d>'
    description: 'Show Difftastic for current commit'
    context: 'subCommits'
    command: 'git dshow "{{.SelectedLocalCommit.Sha}}"'
    subprocess: true
  - key: '<c-d>'
    description: 'Show difft of current commit'
    context: 'files'
    command: 'git dft -- {{.SelectedFile.Name | quote}}'
    subprocess: true
  - key: '<c-d>'
    description: 'Show difft of current commit'
    context: 'commitFiles'
    command: 'git dshow "{{.SelectedLocalCommit.Sha}}" -- {{.SelectedCommitFile.Name | quote}}'
    subprocess: true
  - key: '<c-d>'
    description: 'Show difft of current commit'
    context: 'commits'
    command: 'git dshow "{{.SelectedLocalCommit.Sha}}"'
    subprocess: true