This commit is contained in:
2026-03-23 23:30:03 +09:00
parent 52d1d2db18
commit 12c8cc4d69
14 changed files with 346 additions and 59 deletions

View File

@@ -31,7 +31,41 @@
];
};
programs.git = {
enable = true;
settings = {
core = {
fileMode = false;
editor = "vim";
whitespace = "tabwidth=4,trailing-space,space-before-tab";
};
credential."https://git.kenryu.us".username = "kenryuS";
user = {
name = "Kenryu Shibata";
email = "kenryudev5894@gmail.com";
};
};
};
programs.gitui = {
enable = true;
};
programs.gh = {
enable = true;
extensions = with pkgs; [
gh-f
gh-eco
gh-notify
gh-poi
];
settings = {
editor = "vim";
prompt = true;
pager = "bat";
browser = "firefox";
color_labels = true;
git_protocol = "ssh";
};
};
}