Added: fzf support; Need to be refined later; bunch of catppuccin theming

This commit is contained in:
2026-03-28 22:25:52 +01:00
parent 78bf922920
commit 8ab590b6dc
4 changed files with 56 additions and 41 deletions

View File

@@ -6,25 +6,30 @@
gnupg
];
programs.git = {
enable = true;
settings = {
github = {
user = primaryUser;
programs = {
git = {
enable = true;
settings = {
github = {
user = primaryUser;
};
init = {
defaultBranch = "main";
};
user = {
name = "DerGrumpf"; # TODO replace
email = "p.keier@beyerstedt-it.de"; # TODO replace
};
};
init = {
defaultBranch = "main";
};
user = {
name = "DerGrumpf"; # TODO replace
email = "p.keier@beyerstedt-it.de"; # TODO replace
};
};
lfs.enable = true;
ignores = [
"**/.DS_STORE"
"result"
];
lfs.enable = true;
ignores = [
"**/.DS_STORE"
"result"
];
};
lazygit = {
enable = true;
};
};
}