✨ feat: Start GPG signing commits
This commit is contained in:
parent
1865af21ba
commit
073081c725
6 changed files with 650 additions and 0 deletions
3
.config/fish/conf.d/20-gpg.fish
Normal file
3
.config/fish/conf.d/20-gpg.fish
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env fish
|
||||
|
||||
set -gx GPG_TTY (tty)
|
104
.config/git/.gitconfig
Normal file
104
.config/git/.gitconfig
Normal file
|
@ -0,0 +1,104 @@
|
|||
[core]
|
||||
attributesFile = ~/.config/git/.gitattributes
|
||||
excludesFile = ~/.config/git/.gitignore
|
||||
hooksPath = ~/.config/git/hooks
|
||||
|
||||
# Whitespace types to treat as errors.
|
||||
# blank-at-eol: looks for spaces at EOL.
|
||||
# -blank-at-eof: allows blank lines at EOF.
|
||||
# space-before-tab: looks for spaces immediately before tabs at the beginning
|
||||
# of the line.
|
||||
whitespace = blank-at-eol,-blank-at-eof,space-before-tab
|
||||
|
||||
# Prevent showing files whose names contain non-ASCII symbols as unversioned.
|
||||
# http://michael-kuehnel.de/git/2014/11/21/git-mac-osx-and-german-umlaute.html
|
||||
precomposeunicode = false
|
||||
|
||||
# Speed up commands involving untracked files such as `git status`.
|
||||
# https://git-scm.com/docs/git-update-index#_untracked_cache
|
||||
untrackedCache = true
|
||||
|
||||
# Use delta.
|
||||
pager = delta
|
||||
|
||||
[user]
|
||||
# Do not guess the user's identity.
|
||||
useConfigOnly = true
|
||||
|
||||
[include]
|
||||
path = ~/.config/git/delta-themes.gitconfig
|
||||
|
||||
[delta]
|
||||
navigate = true
|
||||
syntax-theme = Catppuccin-mocha
|
||||
features = mellow-barbet
|
||||
true-color = always
|
||||
hyperlinks = true
|
||||
|
||||
[color]
|
||||
diff = always
|
||||
|
||||
[pretty]
|
||||
lo = tformat:%C(auto)%h%C(reset)%C(auto)%d%C(reset) %s %C(italic blue)%ad%C(reset) %C(241)%aN%C(reset)
|
||||
lc = format:%C(auto)%h%C(reset) %C(white)-%C(reset) %C(italic blue)%ad%C(reset) %C(italic cyan)(%ar)%C(reset)%C(auto)%d%C(reset)%n %C(white)⤷%C(reset) %s %C(241)- %aN <%aE>%C(reset)%n
|
||||
lt = format:%C(auto)%h%C(reset) %C(white)-%C(reset) %C(italic blue)%ad%C(reset) %C(italic cyan)(%ar)%C(reset)%C(auto)%d%C(reset)%n %C(white)⤷%C(reset) %s %C(241)- %aN <%aE>%C(reset)%n%w(0,7,7)%+(trailers:only,unfold)
|
||||
lf = format:%C(auto)%h%C(reset)%C(auto)%d%C(reset) %C(italic 239)[P: %p] [T: %t]%C(reset)%n%C(white)Author:%C(reset) %aN %C(241)<%aE>%C(reset)%n %C(italic blue)%ad%C(reset) %C(italic cyan)(%ar)%C(reset)%n%C(white)Commit:%C(reset) %cN %C(241)<%cE>%C(reset) %C(italic 239)[GPG: %G?% GK]%C(reset)%n %C(italic blue)%cd%C(reset) %C(italic cyan)(%cr)%C(reset)%w(0,4,4)%n%n%C(bold)%s%C(reset)%n%n%-b%n%n%-N%n
|
||||
rlo = tformat:%C(auto)%h%C(reset) %C(bold yellow)(%C(magenta)%gd%C(bold yellow))%C(reset)%C(auto)%d%C(reset) %gs %C(italic blue)%ad%C(reset) %C(241)%aN%C(reset)
|
||||
rlc = format:%C(auto)%h%C(reset) %C(white)-%C(reset) %C(italic blue)%ad%C(reset) %C(italic cyan)(%ar)%C(reset)%C(auto)%d%C(reset)%n %C(white)⤷%C(reset) %s %C(241)- %aN <%aE>%C(reset)%n %C(white)⤷%C(reset) %C(bold yellow)(%C(magenta)%gd%C(bold yellow))%C(reset) %gs %C(241)- %gN <%gE>%C(reset)%n
|
||||
rlt = format:%C(auto)%h%C(reset) %C(white)-%C(reset) %C(italic blue)%ad%C(reset) %C(italic cyan)(%ar)%C(reset)%C(auto)%d%C(reset)%n %C(white)⤷%C(reset) %s %C(241)- %aN <%aE>%C(reset)%n %C(white)⤷%C(reset) %C(bold yellow)(%C(magenta)%gd%C(bold yellow))%C(reset) %gs %C(241)- %gN <%gE>%C(reset)%n%w(0,7,7)%+(trailers:only,unfold)
|
||||
rlf = format:%C(auto)%h%C(reset) %C(bold yellow)(%C(magenta)%gd%C(bold yellow))%C(reset)%C(auto)%d%C(reset) %C(italic 239)[P: %p] [T: %t]%C(reset)%n%C(white)Author:%C(reset) %aN %C(241)<%aE>%C(reset)%n %C(italic blue)%ad%C(reset) %C(italic cyan)(%ar)%C(reset)%n%C(white)Commit:%C(reset) %cN %C(241)<%cE>%C(reset) %C(italic 239)[GPG: %G?% GK]%C(reset)%n %C(italic blue)%cd%C(reset) %C(italic cyan)(%cr)%C(reset)%n%C(white)Reflog:%C(reset) %gN %C(241)<%gE>%C(reset)%n %C(italic)%gs%C(reset)%w(0,4,4)%n%n%C(bold)%s%C(reset)%n%n%-b%n%n%-N%n
|
||||
|
||||
[init]
|
||||
defaultBranch = main
|
||||
|
||||
[interactive]
|
||||
diffFilter = delta --color-only
|
||||
|
||||
[status]
|
||||
showstash = true
|
||||
|
||||
[commit]
|
||||
template = ~/.config/git/commit_template
|
||||
gpgSign = true
|
||||
|
||||
[tag]
|
||||
gpgSign = true
|
||||
|
||||
[push]
|
||||
autoSetupRemote = true
|
||||
|
||||
# Push tags automatically.
|
||||
followTags = true
|
||||
|
||||
[rebase]
|
||||
autosquash = true
|
||||
|
||||
[merge]
|
||||
# Include summaries of merged commits in merge commit messages.
|
||||
log = true
|
||||
|
||||
# delta.
|
||||
conflictstyle = diff3
|
||||
|
||||
[mergetool]
|
||||
keepBackup = false
|
||||
hideResolved = true
|
||||
|
||||
[diff]
|
||||
# Detect when files are copied as well as renamed.
|
||||
renames = copies
|
||||
|
||||
# delta
|
||||
colorMoved = default
|
||||
|
||||
[apply]
|
||||
# Fix whitespace errors when applying a patch, as specified in
|
||||
# core.whitespace.
|
||||
whitespace = true
|
||||
|
||||
[branch]
|
||||
# Show most recently changed branches first.
|
||||
sort = -committerdate
|
||||
|
||||
[include]
|
||||
path = ~/.config/git/.gitconfig.local
|
6
.config/git/.gitconfig.local
Normal file
6
.config/git/.gitconfig.local
Normal file
|
@ -0,0 +1,6 @@
|
|||
# vim:set ft=gitconfig :
|
||||
|
||||
[user]
|
||||
name = punkfairie
|
||||
email = 23287005+punkfairie@users.noreply.github.com
|
||||
signingkey = A86AF57F837E320F
|
23
.config/git/commit_template
Normal file
23
.config/git/commit_template
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
# No more than 50 chars. #### 50 chars is here: #
|
||||
# Title: Summary, imperative, start upper case, don't end with a period
|
||||
# Remember blank line between title and body.
|
||||
|
||||
# Body: Explain *what* and *why* (not *how*).
|
||||
# Wrap at 72 chars. ################################## which is here: #
|
||||
|
||||
|
||||
# At the end: Include Co-authored-by for all contributors.
|
||||
# Include at least one empty line before it. Format:
|
||||
# Co-authored-by: name <user@users.noreply.github.com>
|
||||
#
|
||||
# How to Write a Git Commit Message:
|
||||
# https://chris.beams.io/posts/git-commit/
|
||||
#
|
||||
# 1. Separate subject from body with a blank line
|
||||
# 2. Limit the subject line to 50 characters
|
||||
# 3. Capitalize the subject line
|
||||
# 4. Do not end the subject line with a period
|
||||
# 5. Use the imperative mood in the subject line
|
||||
# 6. Wrap the body at 72 characters
|
||||
# 7. Use the body to explain what and why vs. how
|
513
.config/git/delta-themes.gitconfig
Normal file
513
.config/git/delta-themes.gitconfig
Normal file
|
@ -0,0 +1,513 @@
|
|||
# vim:set ft=gitconfig :
|
||||
#
|
||||
# To use these themes, first include this file in your own gitconfig file:
|
||||
#
|
||||
# [include]
|
||||
# path = PATH/TO/delta/themes.gitconfig
|
||||
#
|
||||
# Then, in your own gitconfig file, activate the chosen theme, e.g.
|
||||
#
|
||||
# [delta]
|
||||
# features = kingfisher
|
||||
#
|
||||
# Please add your own themes to this file, and open a PR.
|
||||
#
|
||||
# Instructions:
|
||||
#
|
||||
# 1. The name of the theme must be the name of some sort of wild organism:
|
||||
# mammal, bird, plant, mollusk -- whatever. It can be in any language.
|
||||
#
|
||||
# 2. Use `delta --show-config` to list all the style settings that are active in
|
||||
# your current delta environment, but only include settings in your theme
|
||||
# that are essential to its appearance.
|
||||
#
|
||||
# 3. Include either `dark = true` or `light = true` according to whether it is
|
||||
# designed for a light or dark terminal background. (This marks a feature as
|
||||
# a "theme", causing it to be picked up by `delta --show-themes`).
|
||||
#
|
||||
# 4. Feel free to include a comment line indicating who is the author of the
|
||||
# theme. E.g. a link to your github user page.
|
||||
|
||||
[delta "colibri"]
|
||||
# author: https://github.com/pablospe
|
||||
# Based on woolly-mammoth: https://github.com/Kr1ss-XD.
|
||||
commit-decoration-style = 130 box
|
||||
dark = true
|
||||
file-decoration-style = "#606018" overline
|
||||
file-added-label = [●]
|
||||
file-copied-label = [C]
|
||||
file-modified-label = [+]
|
||||
file-removed-label = [⛌]
|
||||
file-renamed-label = [→]
|
||||
file-style = 232 bold 184
|
||||
hunk-header-style = syntax bold italic 237
|
||||
line-numbers = true
|
||||
line-numbers-left-format = "{nm:>1}┊"
|
||||
line-numbers-left-style = red
|
||||
line-numbers-minus-style = red bold
|
||||
line-numbers-plus-style = green bold
|
||||
line-numbers-right-format = " {np:>1}┊"
|
||||
line-numbers-right-style = green
|
||||
line-numbers-zero-style = "#545474" italic
|
||||
minus-emph-style = normal "#80002a"
|
||||
minus-style = normal "#5e0000"
|
||||
plus-emph-style = syntax bold "#007e5e"
|
||||
plus-style = syntax "#003500"
|
||||
syntax-theme = OneHalfDark
|
||||
whitespace-error-style = "#80002a" reverse
|
||||
zero-style = syntax
|
||||
blame-format = "{author:<18} ({commit:>7}) ┊{timestamp:^16}┊ "
|
||||
|
||||
[delta "collared-trogon"]
|
||||
# author: https://github.com/clnoll
|
||||
commit-decoration-style = bold box ul
|
||||
dark = true
|
||||
file-decoration-style = none
|
||||
file-style = omit
|
||||
hunk-header-decoration-style = "#022b45" box ul
|
||||
hunk-header-file-style = "#999999"
|
||||
hunk-header-line-number-style = bold "#003300"
|
||||
hunk-header-style = file line-number syntax
|
||||
line-numbers = true
|
||||
line-numbers-left-style = "#022b45"
|
||||
line-numbers-minus-style = "#80002a"
|
||||
line-numbers-plus-style = "#003300"
|
||||
line-numbers-right-style = "#022b45"
|
||||
line-numbers-zero-style = "#999999"
|
||||
minus-emph-style = normal "#80002a"
|
||||
minus-style = normal "#330011"
|
||||
plus-emph-style = syntax "#003300"
|
||||
plus-style = syntax "#001a00"
|
||||
syntax-theme = Nord
|
||||
|
||||
[delta "coracias-caudatus"]
|
||||
# author: https://github.com/clnoll
|
||||
commit-decoration-style = ol "#7536ff"
|
||||
commit-style = "#200078"
|
||||
file-decoration-style = none
|
||||
file-style = omit
|
||||
hunk-header-decoration-style = "#cfd6ff" ul
|
||||
hunk-header-file-style = "#858dff"
|
||||
hunk-header-line-number-style = "#7536ff"
|
||||
hunk-header-style = file line-number syntax
|
||||
light = true
|
||||
line-numbers = true
|
||||
line-numbers-left-format = "{nm:>4} ."
|
||||
line-numbers-left-style = "#e3ab02"
|
||||
line-numbers-minus-style = "#ff38b6"
|
||||
line-numbers-plus-style = "#00e0c2"
|
||||
line-numbers-right-format = "{np:>4} "
|
||||
line-numbers-right-style = white
|
||||
line-numbers-zero-style = "#cccccc"
|
||||
minus-emph-style = bold "#ff3838" "#ffe3f7"
|
||||
minus-style = "#ff0080"
|
||||
plus-emph-style = "#008a81" bold "#00ffbf"
|
||||
plus-style = syntax "#cffff3"
|
||||
syntax-theme = GitHub
|
||||
|
||||
[delta "hoopoe"]
|
||||
# author: https://github.com/dandavison
|
||||
light = true
|
||||
pink = "#ffe0e0"
|
||||
dark-pink = "#ffc0c0"
|
||||
green = "#d0ffd0"
|
||||
dark-green = "#a0efa0"
|
||||
dark-green-2 = "#067a00"
|
||||
minus-style = normal hoopoe.pink
|
||||
minus-emph-style = normal hoopoe.dark-pink
|
||||
minus-non-emph-style = minus-style
|
||||
plus-style = syntax hoopoe.green
|
||||
plus-emph-style = syntax hoopoe.dark-green
|
||||
plus-non-emph-style = plus-style
|
||||
minus-empty-line-marker-style = minus-style
|
||||
plus-empty-line-marker-style = plus-style
|
||||
commit-decoration-style = blue ol
|
||||
commit-style = raw
|
||||
file-style = omit
|
||||
hunk-header-decoration-style = blue box
|
||||
hunk-header-file-style = red
|
||||
hunk-header-line-number-style = hoopoe.dark-green-2
|
||||
hunk-header-style = file line-number syntax
|
||||
syntax-theme = GitHub
|
||||
zero-style = syntax
|
||||
|
||||
[delta "tangara-chilensis"]
|
||||
# author: https://github.com/clnoll
|
||||
commit-decoration-style = bold box ul "#34fd50"
|
||||
dark = true
|
||||
file-decoration-style = none
|
||||
file-style = omit
|
||||
hunk-header-decoration-style = "#00b494" box ul
|
||||
hunk-header-file-style = "#999999"
|
||||
hunk-header-line-number-style = bold "#03a4ff"
|
||||
hunk-header-style = file line-number syntax
|
||||
line-numbers = true
|
||||
line-numbers-left-style = black
|
||||
line-numbers-minus-style = "#B10036"
|
||||
line-numbers-plus-style = "#03a4ff"
|
||||
line-numbers-right-style = black
|
||||
line-numbers-zero-style = "#999999"
|
||||
minus-emph-style = normal "#de004e"
|
||||
minus-style = normal "#990017"
|
||||
plus-emph-style = syntax "#03a4ff"
|
||||
plus-style = syntax "#450eff"
|
||||
side-by-side = true
|
||||
syntax-theme = Vibrant Sunburst
|
||||
|
||||
[delta "villsau"]
|
||||
# author: https://github.com/torarnv
|
||||
dark = true
|
||||
file-style = omit
|
||||
hunk-header-decoration-style = omit
|
||||
hunk-header-file-style = magenta
|
||||
hunk-header-line-number-style = dim magenta
|
||||
hunk-header-style = file line-number syntax
|
||||
line-numbers = false
|
||||
minus-emph-style = bold red 52
|
||||
minus-empty-line-marker-style = normal "#3f0001"
|
||||
minus-non-emph-style = dim red
|
||||
minus-style = bold red
|
||||
plus-emph-style = bold green 22
|
||||
plus-empty-line-marker-style = normal "#002800"
|
||||
plus-non-emph-style = dim green
|
||||
plus-style = bold green
|
||||
syntax-theme = OneHalfDark
|
||||
whitespace-error-style = reverse red
|
||||
zero-style = dim syntax
|
||||
|
||||
[delta "woolly-mammoth"]
|
||||
# author: https://github.com/Kr1ss-XD
|
||||
commit-decoration-style = 232 130 box
|
||||
commit-style = 232 bold italic 130
|
||||
dark = true
|
||||
file-added-label = [+]
|
||||
file-copied-label = [C]
|
||||
file-decoration-style = "#606018" overline
|
||||
file-modified-label = [M]
|
||||
file-removed-label = [-]
|
||||
file-renamed-label = [R]
|
||||
file-style = 232 bold 184
|
||||
hunk-header-decoration-style = none
|
||||
hunk-header-style = syntax bold italic 237
|
||||
line-numbers = true
|
||||
line-numbers-left-format = "{nm:>1}┊"
|
||||
line-numbers-left-style = red
|
||||
line-numbers-minus-style = red italic black
|
||||
line-numbers-plus-style = green italic black
|
||||
line-numbers-right-format = "{np:>1}┊"
|
||||
line-numbers-right-style = green
|
||||
line-numbers-zero-style = "#545474" italic
|
||||
minus-emph-style = syntax bold "#780000"
|
||||
minus-style = syntax "#400000"
|
||||
plus-emph-style = syntax bold "#007800"
|
||||
plus-style = syntax "#004000"
|
||||
syntax-theme = Vibrant Sunburst
|
||||
whitespace-error-style = "#280050" reverse
|
||||
zero-style = syntax
|
||||
blame-format = "{author:<18} ({commit:>7}) ┊{timestamp:^16}┊ "
|
||||
blame-palette = "#101010 #200020 #002800 #000028 #202000 #280000 #002020 #002800 #202020"
|
||||
|
||||
[delta "calochortus-lyallii"]
|
||||
# author: https://github.com/manojkarthick
|
||||
commit-decoration-style = none
|
||||
dark = true
|
||||
file-added-label = [+]
|
||||
file-copied-label = [C]
|
||||
file-decoration-style = none
|
||||
file-modified-label = [M]
|
||||
file-removed-label = [-]
|
||||
file-renamed-label = [R]
|
||||
file-style = 232 bold 184
|
||||
hunk-header-decoration-style = none
|
||||
hunk-header-file-style = "#999999"
|
||||
hunk-header-line-number-style = bold "#03a4ff"
|
||||
hunk-header-style = file line-number syntax
|
||||
line-numbers = true
|
||||
line-numbers-left-style = black
|
||||
line-numbers-minus-style = "#B10036"
|
||||
line-numbers-plus-style = "#03a4ff"
|
||||
line-numbers-right-style = black
|
||||
line-numbers-zero-style = "#999999"
|
||||
minus-emph-style = syntax bold "#780000"
|
||||
minus-style = syntax "#400000"
|
||||
plus-emph-style = syntax bold "#007800"
|
||||
plus-style = syntax "#004000"
|
||||
whitespace-error-style = "#280050" reverse
|
||||
zero-style = syntax
|
||||
syntax-theme = Nord
|
||||
|
||||
[delta "mantis-shrimp"]
|
||||
#author: https://github.com/2kabhishek
|
||||
dark = true
|
||||
side-by-side = true
|
||||
keep-plus-minus-markers = true
|
||||
hyperlinks = true
|
||||
file-added-label = [+]
|
||||
file-copied-label = [==]
|
||||
file-modified-label = [*]
|
||||
file-removed-label = [-]
|
||||
file-renamed-label = [->]
|
||||
file-style = omit
|
||||
zero-style = syntax
|
||||
syntax-theme = Monokai Extended
|
||||
commit-decoration-style ="#11ce16" box
|
||||
commit-style = "#ffd21a" bold italic
|
||||
hunk-header-decoration-style = "#1688f0" box ul
|
||||
hunk-header-file-style = "#c63bee" ul bold
|
||||
hunk-header-line-number-style = "#ffd21a" box bold
|
||||
hunk-header-style = file line-number syntax bold italic
|
||||
line-numbers = true
|
||||
line-numbers-left-format = "{nm:>1}|"
|
||||
line-numbers-left-style = "#1688f0"
|
||||
line-numbers-minus-style = "#ff0051" bold
|
||||
line-numbers-plus-style = "#03e57f" bold
|
||||
line-numbers-right-format = "{np:>1}|"
|
||||
line-numbers-right-style = "#1688f0"
|
||||
line-numbers-zero-style = "#aaaaaa" italic
|
||||
minus-emph-style = syntax bold "#b80000"
|
||||
minus-style = syntax "#5d001e"
|
||||
plus-emph-style = syntax bold "#007800"
|
||||
plus-style = syntax "#004433"
|
||||
whitespace-error-style = "#280050"
|
||||
|
||||
[delta "mantis-shrimp-lite"]
|
||||
#author: https://github.com/2kabhishek
|
||||
dark = true
|
||||
side-by-side = true
|
||||
keep-plus-minus-markers = true
|
||||
file-added-label = [+]
|
||||
file-copied-label = [==]
|
||||
file-modified-label = [*]
|
||||
file-removed-label = [-]
|
||||
file-renamed-label = [->]
|
||||
file-style = omit
|
||||
zero-style = syntax
|
||||
syntax-theme = Monokai Extended
|
||||
commit-decoration-style = green box
|
||||
commit-style = yellow bold italic
|
||||
hunk-header-decoration-style = blue box ul
|
||||
hunk-header-file-style = purple ul bold
|
||||
hunk-header-line-number-style = yellow box bold
|
||||
hunk-header-style = file line-number syntax bold italic
|
||||
line-numbers = true
|
||||
line-numbers-left-format = "{nm:>1}|"
|
||||
line-numbers-left-style = blue
|
||||
line-numbers-minus-style = red bold
|
||||
line-numbers-plus-style = green bold
|
||||
line-numbers-right-format = "{np:>1}|"
|
||||
line-numbers-right-style = blue
|
||||
line-numbers-zero-style = white italic
|
||||
minus-emph-style = syntax bold red
|
||||
plus-emph-style = syntax bold green
|
||||
whitespace-error-style = purple bold
|
||||
|
||||
[delta "zebra-dark"]
|
||||
minus-style = syntax "#330f0f"
|
||||
minus-emph-style = syntax "#4f1917"
|
||||
plus-style = syntax "#0e2f19"
|
||||
plus-emph-style = syntax "#174525"
|
||||
map-styles = \
|
||||
bold purple => syntax "#330f29", \
|
||||
bold blue => syntax "#271344", \
|
||||
bold cyan => syntax "#0d3531", \
|
||||
bold yellow => syntax "#222f14"
|
||||
zero-style = syntax
|
||||
whitespace-error-style = "#aaaaaa"
|
||||
|
||||
[delta "zebra-light"]
|
||||
minus-style = syntax "#fbdada"
|
||||
minus-emph-style = syntax "#f6b6b6"
|
||||
plus-style = syntax "#d6ffd6"
|
||||
plus-emph-style = syntax "#adffad"
|
||||
map-styles = \
|
||||
bold purple => syntax "#feecf7", \
|
||||
bold blue => syntax "#e5dff6", \
|
||||
bold cyan => syntax "#d8fdf6", \
|
||||
bold yellow => syntax "#f4ffe0"
|
||||
zero-style = syntax
|
||||
whitespace-error-style = "#aaaaaa"
|
||||
|
||||
[delta "chameleon"]
|
||||
#author: https://github.com/AirOnSkin
|
||||
dark = true
|
||||
line-numbers = true
|
||||
side-by-side = true
|
||||
keep-plus-minus-markers = false
|
||||
syntax-theme = Nord
|
||||
file-style = "#434C5E" bold
|
||||
file-decoration-style = "#434C5E" ul
|
||||
file-added-label = [+]
|
||||
file-copied-label = [==]
|
||||
file-modified-label = [*]
|
||||
file-removed-label = [-]
|
||||
file-renamed-label = [->]
|
||||
hunk-header-style = omit
|
||||
line-numbers-left-format = " {nm:>3} │"
|
||||
line-numbers-left-style = red
|
||||
line-numbers-right-format = " {np:>3} │"
|
||||
line-numbers-right-style = green
|
||||
line-numbers-minus-style = red italic black
|
||||
line-numbers-plus-style = green italic black
|
||||
line-numbers-zero-style = "#434C5E" italic
|
||||
minus-style = bold red
|
||||
minus-emph-style = bold "#202020" "#FF5555"
|
||||
minus-non-emph-style = bold
|
||||
plus-style = bold green
|
||||
plus-emph-style = bold "#202020" "#50FA7B"
|
||||
plus-non-emph-style = bold
|
||||
zero-style = syntax
|
||||
blame-code-style = syntax
|
||||
blame-format = "{author:<18} ({commit:>9}) {timestamp:^16}"
|
||||
blame-palette = "#2E3440" "#3B4252" "#434C5E" "#4C566A"
|
||||
merge-conflict-begin-symbol = ~
|
||||
merge-conflict-end-symbol = ~
|
||||
merge-conflict-ours-diff-header-style = "#F1FA8C" bold
|
||||
merge-conflict-ours-diff-header-decoration-style = "#434C5E" box
|
||||
merge-conflict-theirs-diff-header-style = "#F1FA8C" bold
|
||||
merge-conflict-theirs-diff-header-decoration-style = "#434C5E" box
|
||||
|
||||
[delta "gruvmax-fang"]
|
||||
# author: https://github.com/maxfangx
|
||||
# General appearance
|
||||
dark = true
|
||||
syntax-theme = gruvbox-dark
|
||||
# File
|
||||
file-style = "#FFFFFF" bold
|
||||
file-added-label = [+]
|
||||
file-copied-label = [==]
|
||||
file-modified-label = [*]
|
||||
file-removed-label = [-]
|
||||
file-renamed-label = [->]
|
||||
file-decoration-style = "#434C5E" ul
|
||||
file-decoration-style = "#84786A" ul
|
||||
# No hunk headers
|
||||
hunk-header-style = omit
|
||||
# Line numbers
|
||||
line-numbers = true
|
||||
line-numbers-left-style = "#84786A"
|
||||
line-numbers-right-style = "#84786A"
|
||||
line-numbers-minus-style = "#A02A11"
|
||||
line-numbers-plus-style = "#479B36"
|
||||
line-numbers-zero-style = "#84786A"
|
||||
line-numbers-left-format = " {nm:>3} │"
|
||||
line-numbers-right-format = " {np:>3} │"
|
||||
# Diff contents
|
||||
inline-hint-style = syntax
|
||||
minus-style = syntax "#330011"
|
||||
minus-emph-style = syntax "#80002a"
|
||||
minus-non-emph-style = syntax auto
|
||||
plus-style = syntax "#001a00"
|
||||
plus-emph-style = syntax "#003300"
|
||||
plus-non-emph-style = syntax auto
|
||||
whitespace-error-style = "#FB4934" reverse
|
||||
# Commit hash
|
||||
commit-decoration-style = normal box
|
||||
commit-style = "#ffffff" bold
|
||||
# Blame
|
||||
blame-code-style = syntax
|
||||
blame-format = "{author:>18} ({commit:>8}) {timestamp:<13} "
|
||||
blame-palette = "#000000" "#1d2021" "#282828" "#3c3836"
|
||||
# Merge conflicts
|
||||
merge-conflict-begin-symbol = ⌃
|
||||
merge-conflict-end-symbol = ⌄
|
||||
merge-conflict-ours-diff-header-style = "#FABD2F" bold
|
||||
merge-conflict-theirs-diff-header-style = "#FABD2F" bold overline
|
||||
merge-conflict-ours-diff-header-decoration-style = ''
|
||||
merge-conflict-theirs-diff-header-decoration-style = ''
|
||||
|
||||
[delta "discord"]
|
||||
commit-style = omit
|
||||
file-style = 34 ul
|
||||
file-decoration-style = none
|
||||
hunk-header-style = omit
|
||||
minus-style = 31
|
||||
minus-non-emph-style = 31
|
||||
minus-emph-style = 40
|
||||
minus-empty-line-marker-style = 31
|
||||
zero-style = 30
|
||||
plus-style = 32
|
||||
plus-non-emph-style = 32
|
||||
plus-emph-style = 40
|
||||
grep-file-style = 34
|
||||
grep-line-number-style = 34
|
||||
whitespace-error-style = 41
|
||||
blame-code-style = omit
|
||||
true-color = never
|
||||
file-modified-label = changed:
|
||||
right-arrow = >
|
||||
hyperlinks = false
|
||||
keep-plus-minus-markers = true
|
||||
diff-stat-align-width = 10
|
||||
syntax-theme = none
|
||||
width = variable
|
||||
|
||||
[delta "mellow-barbet"]
|
||||
# author: https://github.com/kvrohit
|
||||
# To configure terminal colors see https://github.com/kvrohit/mellow.nvim#terminals
|
||||
dark = true
|
||||
syntax-theme = base16
|
||||
line-numbers = true
|
||||
side-by-side = true
|
||||
file-style = brightwhite
|
||||
file-decoration-style = none
|
||||
file-added-label = [+]
|
||||
file-copied-label = [==]
|
||||
file-modified-label = [*]
|
||||
file-removed-label = [-]
|
||||
file-renamed-label = [->]
|
||||
hunk-header-decoration-style = "#3e3e43" box ul
|
||||
plus-style = brightgreen black
|
||||
plus-emph-style = black green
|
||||
minus-style = brightred black
|
||||
minus-emph-style = black red
|
||||
line-numbers-minus-style = brightred
|
||||
line-numbers-plus-style = brightgreen
|
||||
line-numbers-left-style = "#3e3e43"
|
||||
line-numbers-right-style = "#3e3e43"
|
||||
line-numbers-zero-style = "#57575f"
|
||||
zero-style = syntax
|
||||
whitespace-error-style = black bold
|
||||
blame-code-style = syntax
|
||||
blame-palette = "#161617" "#1b1b1d" "#2a2a2d" "#3e3e43"
|
||||
merge-conflict-begin-symbol = ~
|
||||
merge-conflict-end-symbol = ~
|
||||
merge-conflict-ours-diff-header-style = yellow bold
|
||||
merge-conflict-ours-diff-header-decoration-style = "#3e3e43" box
|
||||
merge-conflict-theirs-diff-header-style = yellow bold
|
||||
merge-conflict-theirs-diff-header-decoration-style = "#3e3e43" box
|
||||
|
||||
[delta "arctic-fox"]
|
||||
# author: https://github.com/anthony-halim
|
||||
dark = true
|
||||
syntax-theme = Nord
|
||||
file-added-label = [+]
|
||||
file-copied-label = [==]
|
||||
file-modified-label = [*]
|
||||
file-removed-label = [-]
|
||||
file-renamed-label = [->]
|
||||
file-style = omit
|
||||
hunk-header-decoration-style = "#5E81AC" ul
|
||||
hunk-header-file-style = blue ul bold
|
||||
hunk-header-line-number-style = yellow box bold
|
||||
hunk-header-style = file line-number syntax bold italic
|
||||
plus-style = brightgreen
|
||||
plus-emph-style = black green
|
||||
minus-style = brightred
|
||||
minus-emph-style = black red
|
||||
line-numbers = true
|
||||
line-numbers-minus-style = brightred
|
||||
line-numbers-plus-style = brightgreen
|
||||
line-numbers-left-style = "#5E81AC"
|
||||
line-numbers-right-style = "#5E81AC"
|
||||
line-numbers-zero-style = "#4C566A"
|
||||
zero-style = syntax
|
||||
whitespace-error-style = black bold
|
||||
blame-code-style = syntax
|
||||
blame-format = "{author:<18} {commit:<6} {timestamp:<15}"
|
||||
blame-palette = "#2E3440" "#3B4252" "#434C5E"
|
||||
merge-conflict-begin-symbol = ~
|
||||
merge-conflict-end-symbol = ~
|
||||
merge-conflict-ours-diff-header-style = yellow bold
|
||||
merge-conflict-ours-diff-header-decoration-style = "#5E81AC" box
|
||||
merge-conflict-theirs-diff-header-style = yellow bold
|
||||
merge-conflict-theirs-diff-header-decoration-style = "#5E81AC" box
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -68,3 +68,4 @@ data/
|
|||
.dot/
|
||||
.luarocks/lib/luarocks/rocks-5.4/manifest
|
||||
.config/pulse/cookie
|
||||
.gnupg/
|
||||
|
|
Loading…
Reference in a new issue