36 lines
928 B
Nix
36 lines
928 B
Nix
{ lib, pkgs, catppuccin-themes, gitui, ... }: {
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
package = pkgs.gitFull;
|
|
userName = "Evie Litherland-Smith";
|
|
userEmail = lib.mkDefault "evie@xenia.me.uk";
|
|
delta = {
|
|
enable = true;
|
|
options = {
|
|
blame-code-style = "syntax";
|
|
line-numbers = true;
|
|
navigate = true;
|
|
side-by-side = true;
|
|
syntax-theme = "Catppuccin";
|
|
zero-style = "dim syntax";
|
|
};
|
|
};
|
|
extraConfig = {
|
|
pull.rebase = false;
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
gitui = {
|
|
enable = true;
|
|
keyConfig = builtins.readFile "${gitui}/vim_style_key_config.ron";
|
|
theme = builtins.readFile catppuccin-themes.gitui;
|
|
};
|
|
bat = {
|
|
enable = true;
|
|
config.theme = "Catppuccin";
|
|
themes.Catppuccin = builtins.readFile catppuccin-themes.bat;
|
|
};
|
|
};
|
|
}
|