initial commit

This commit is contained in:
2023-12-21 13:05:49 +05:30
commit e63afa54b8
65 changed files with 3589 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ ... }: {
programs.starship = {
enable = true;
settings = {
format = ''[󰊠 ](bold green)$directory(bold blue)$git_branch$git_status[](bold yellow)[](bold purple)[](bold blue) '';
scan_timeout = 60;
add_newline = false;
line_break.disabled = true;
directory.style = "bold blue";
cmd_duration.format = "[$duration]($style) ";
git_branch.format = "[$symbol$branch]($style) ";
nodejs.format = "[$symbol($version )]($style)";
rust.format = "[$symbol($version )]($style)";
golang = {
format = "[$symbol($version )]($style)";
symbol = " ";
};
};
};
}