Add default gitconfig

This commit is contained in:
Mitchel
2025-03-04 08:48:37 +01:00
parent 179265e3c1
commit cce05c549a
2 changed files with 64 additions and 0 deletions

View File

@@ -2,12 +2,27 @@ local wezterm = require("wezterm")
local config = {}
local act = wezterm.action
local os_name = os.getenv("OS")
<<<<<<< Updated upstream
||||||| Stash base
=======
if os_name and os_name:lower():find("windows") then
config.default_prog = { "pwsh.exe" }
else
config.default_prog = { "/usr/bin/fish" }
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.initial_rows = 36
config.initial_cols = 132