Dump nixos config after scrubing
This commit is contained in:
commit
5fa4c76c24
854 changed files with 30072 additions and 0 deletions
33
home-modules/lazygit.nix
Normal file
33
home-modules/lazygit.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ ... }: {
|
||||
programs.lazygit = {
|
||||
enable = true;
|
||||
settings = {
|
||||
git.commit.signOff = true;
|
||||
git.autoFetch = false;
|
||||
git.autoRefresh = false;
|
||||
keybinding = {
|
||||
universal = {
|
||||
prevItem-alt = "e";
|
||||
nextItem-alt = "n";
|
||||
prevBlock-alt = "m";
|
||||
nextBlock-alt = "i";
|
||||
nextMatch = "@";
|
||||
prevMatch = "#";
|
||||
new = "+";
|
||||
edit = "~";
|
||||
nextScreenMode = "*";
|
||||
};
|
||||
files.ignoreFile = "-";
|
||||
branches.viewGitFlowOptions = "g";
|
||||
commits.startInteractiveRebase = "I";
|
||||
submodules.init = "I";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
shellAliases = {
|
||||
lg = "lazygit";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue