blob: e2f5c9492b3b669a692eca6adef71501208fba30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{ pkgs, ... }:
{
programs = {
git = {
enable = true;
userName = "Mel";
userEmail = "mel@rnrd.eu";
signing = {
key = "D75A C286 ACA7 00B4 D8EC 377D 2082 F8EC 11CC 009B";
signByDefault = true;
};
ignores = [
# ignore most vim swapfiles
"*~" "[._]*.sw?"
];
extraConfig = {
init.defaultBranch = "main";
pull.rebase = true;
};
};
tmux = {
enable = true;
mouse = true;
keyMode = "vi";
plugins = with pkgs.tmuxPlugins; [
yank fpp open fuzzback
];
};
fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting
'';
};
zoxide = { enable = true; enableFishIntegration = true; };
};
}
|