fix warnings

This commit is contained in:
Sridhar Ratnakumar 2025-10-31 13:18:41 -04:00
parent 79b74a4943
commit a2e146ac60

View file

@ -6,31 +6,23 @@
programs.git = {
enable = true;
delta = {
enable = true;
options = {
navigate = true;
light = false;
side-by-side = true;
line-numbers = true;
pager = "${pkgs.less}/bin/less --mouse --wheel-lines=3";
};
};
userName = flake.config.me.fullname;
userEmail = flake.config.me.email;
aliases = {
co = "checkout";
ci = "commit";
cia = "commit --amend";
s = "status";
st = "status";
b = "branch";
# p = "pull --rebase";
pu = "push";
};
ignores = [ "*~" "*.swp" ];
lfs.enable = true;
extraConfig = {
settings = {
user = {
name = flake.config.me.fullname;
email = flake.config.me.email;
};
alias = {
co = "checkout";
ci = "commit";
cia = "commit --amend";
s = "status";
st = "status";
b = "branch";
# p = "pull --rebase";
pu = "push";
};
init.defaultBranch = "master"; # Undo breakage due to https://srid.ca/luxury-belief
#protocol.keybase.allow = "always";
credential.helper = "store --file ~/.git-credentials";
@ -44,6 +36,18 @@
};
};
programs.delta = {
enable = true;
enableGitIntegration = true;
options = {
navigate = true;
light = false;
side-by-side = true;
line-numbers = true;
pager = "${pkgs.less}/bin/less --mouse --wheel-lines=3";
};
};
programs.lazygit = {
enable = true;
settings = {