mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
34 lines
873 B
Text
34 lines
873 B
Text
# $DOTFILES/common/gitconfig.example
|
|
# Date: 2024-12-22
|
|
# Author: js0ny
|
|
|
|
# Location:
|
|
# Windows: %USERPROFILE%\.gitconfig
|
|
# *nix: ~/.config/git/config
|
|
# Linking: (Note that this file is an example, only copy this then edit)
|
|
# cp $DOTFILES/common/gitconfig.example ~/.config/git/config
|
|
[user] # Modify the name and email
|
|
name = whoami
|
|
email = whoami@example.com
|
|
[include]
|
|
path = ~/.config/git/catppuccin-delta.gitconfig
|
|
[core]
|
|
editor = nvim
|
|
pager = delta
|
|
autocrlf = input # Force End of Line in different platforms
|
|
[interactive]
|
|
diffFilter = delta --color-only
|
|
[delta]
|
|
navigate = true
|
|
dark = true
|
|
features = catppuccin-mocha
|
|
[filter "lfs"]
|
|
clean = git-lfs clean -- %f
|
|
smudge = git-lfs smudge -- %f
|
|
process = git-lfs filter-process
|
|
required = true
|
|
[init]
|
|
defaultBranch = master
|
|
|
|
# [url "git@github.com:"] # Force ssh
|
|
# insteadOf = https://github.com/
|