Compare commits

..

2 Commits

5 changed files with 26 additions and 14 deletions

View File

@@ -37,6 +37,7 @@
../../profiles/nono.nix
../../profiles/neovim
../../profiles/opencode.nix
../../profiles/claude-code.nix
../../profiles/ripgrep.nix
../../profiles/ssh.nix
../../profiles/starship.nix

View File

@@ -36,6 +36,7 @@
../../profiles/nono.nix
../../profiles/neovim
../../profiles/opencode.nix
../../profiles/claude-code.nix
../../profiles/ripgrep.nix
../../profiles/ssh.nix
../../profiles/starship.nix

View File

@@ -37,6 +37,7 @@
../../profiles/nono.nix
../../profiles/neovim
../../profiles/opencode.nix
../../profiles/claude-code.nix
../../profiles/ripgrep.nix
../../profiles/ssh.nix
../../profiles/starship.nix

9
profiles/claude-code.nix Normal file
View File

@@ -0,0 +1,9 @@
{
inputs,
pkgs,
...
}: {
home.packages = [
inputs.llm-agents.packages.${pkgs.stdenv.hostPlatform.system}.claude-code
];
}

View File

@@ -23,20 +23,20 @@
truncation_length = 20;
truncation_symbol = "";
};
git_status = {
format = "([$all_status$ahead_behind]($style) )";
style = "bold #df8e1d";
conflicted = "conflict:$count ";
ahead = "ahead:$count ";
behind = "behind:$count ";
diverged = "ahead:$ahead_count behind:$behind_count ";
untracked = "new:$count ";
stashed = "stash:$count ";
modified = "mod:$count ";
staged = "staged:$count ";
renamed = "mv:$count ";
deleted = "del:$count ";
};
git_status = {
format = "([$all_status$ahead_behind]($style) )";
style = "bold #df8e1d";
conflicted = "conflict:$count ";
ahead = "ahead:$count ";
behind = "behind:$count ";
diverged = "ahead:$ahead_count behind:$behind_count ";
untracked = "new:$count ";
stashed = "stash:$count ";
modified = "mod:$count ";
staged = "staged:$count ";
renamed = "mv:$count ";
deleted = "del:$count ";
};
};
};
}