Add default gitconfig
This commit is contained in:
49
.gitconfig
Normal file
49
.gitconfig
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
[user]
|
||||||
|
email = mitchel@organiq.nl
|
||||||
|
name = Mitchel
|
||||||
|
[column]
|
||||||
|
ui = auto
|
||||||
|
[branch]
|
||||||
|
sort = -committerdate
|
||||||
|
[tag]
|
||||||
|
sort = version:refname
|
||||||
|
[init]
|
||||||
|
defaultBranch = main
|
||||||
|
[diff]
|
||||||
|
algorithm = histogram
|
||||||
|
colorMoved = plain
|
||||||
|
mnemonicPrefix = true
|
||||||
|
renames = true
|
||||||
|
[push]
|
||||||
|
default = simple
|
||||||
|
autoSetupRemote = true
|
||||||
|
followTags = true
|
||||||
|
[fetch]
|
||||||
|
prune = true
|
||||||
|
pruneTags = true
|
||||||
|
all = true
|
||||||
|
|
||||||
|
[help]
|
||||||
|
autocorrect = prompt
|
||||||
|
[commit]
|
||||||
|
verbose = true
|
||||||
|
[rerere]
|
||||||
|
enabled = true
|
||||||
|
autoupdate = true
|
||||||
|
[core]
|
||||||
|
excludesfile = ~/.gitignore
|
||||||
|
[rebase]
|
||||||
|
autoSquash = true
|
||||||
|
autoStash = true
|
||||||
|
updateRefs = true
|
||||||
|
|
||||||
|
# a matter of taste (uncomment if you dare)
|
||||||
|
|
||||||
|
[core]
|
||||||
|
# fsmonitor = true
|
||||||
|
# untrackedCache = true
|
||||||
|
[merge]
|
||||||
|
# (just 'diff3' if git version < 2.3)
|
||||||
|
conflictstyle = zdiff3
|
||||||
|
[pull]
|
||||||
|
rebase = true
|
||||||
@@ -2,12 +2,27 @@ local wezterm = require("wezterm")
|
|||||||
local config = {}
|
local config = {}
|
||||||
local act = wezterm.action
|
local act = wezterm.action
|
||||||
local os_name = os.getenv("OS")
|
local os_name = os.getenv("OS")
|
||||||
|
<<<<<<< Updated upstream
|
||||||
|
||||||| Stash base
|
||||||
|
=======
|
||||||
|
|
||||||
if os_name and os_name:lower():find("windows") then
|
if os_name and os_name:lower():find("windows") then
|
||||||
config.default_prog = { "pwsh.exe" }
|
config.default_prog = { "pwsh.exe" }
|
||||||
else
|
else
|
||||||
config.default_prog = { "/usr/bin/fish" }
|
config.default_prog = { "/usr/bin/fish" }
|
||||||
end
|
end
|
||||||
|
>>>>>>> Stashed changes
|
||||||
|
|
||||||
|
<<<<<<< Updated upstream
|
||||||
|
if os_name and os_name:lower():find("windows") then
|
||||||
|
config.default_prog = { "pwsh.exe" }
|
||||||
|
else
|
||||||
|
config.default_prog = { "/usr/bin/fish" }
|
||||||
|
end
|
||||||
|
||||||| Stash base
|
||||||
|
config.default_prog = { "/usr/bin/fish" }
|
||||||
|
=======
|
||||||
|
>>>>>>> Stashed changes
|
||||||
config.default_cwd = "~"
|
config.default_cwd = "~"
|
||||||
config.initial_rows = 36
|
config.initial_rows = 36
|
||||||
config.initial_cols = 132
|
config.initial_cols = 132
|
||||||
|
|||||||
Reference in New Issue
Block a user