diff options
| author | Anton Bobov <anton@bobov.name> | 2023-08-23 18:01:41 +0500 |
|---|---|---|
| committer | Anton Bobov <anton@bobov.name> | 2023-08-23 18:01:41 +0500 |
| commit | 6b3ff438887001986097e97fce7ec938647a8c7a (patch) | |
| tree | 5bda36890f5b5247ff0b1a51b9aa1c43249b4eda | |
| parent | 2658c72d2653888ddc58c59de8ac482bb766e6a9 (diff) | |
Add lazygit config
| -rwxr-xr-x | .gitignore | 2 | ||||
| -rw-r--r-- | files/.config/lazygit/config.yml | 23 | ||||
| -rw-r--r-- | install.conf.yaml | 1 |
3 files changed, 26 insertions, 0 deletions
@@ -22,3 +22,5 @@ /files/.config/beets/state.pickle /files/.config/mpv/watch_later/ +files/.config/lazygit/development.log +files/.config/lazygit/state.yml diff --git a/files/.config/lazygit/config.yml b/files/.config/lazygit/config.yml new file mode 100644 index 0000000..48f6314 --- /dev/null +++ b/files/.config/lazygit/config.yml @@ -0,0 +1,23 @@ +--- +gui: + nerdFontsVersion: "3" + theme: + lightTheme: true + branchColors: + 'develop': '#ff2222' + animateExplosion: false +git: + paging: + colorArg: always + pager: diff-so-fancy + 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>' diff --git a/install.conf.yaml b/install.conf.yaml index 75f652f..5828fcb 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -51,6 +51,7 @@ ~/.config/beets: files/.config/beets ~/.config/mpv: files/.config/mpv ~/.config/yamllint: files/.config/yamllint + ~/.config/lazygit: files/.config/lazygit - shell: - [git submodule update --init --recursive, Installing submodules] |
