49 current 2024-02-29 22:45:25 24.05.20240228.9099616 6.6.18 *

This commit is contained in:
zackartz 2024-02-29 22:45:28 -05:00
parent 548ffbb3b3
commit 867fe1c21e
4 changed files with 186 additions and 1 deletions

View file

@ -0,0 +1,26 @@
{config, ...}: {
programs.starship = {
enable = true;
enableZshIntegration = config.programs.zsh.enable;
settings = {
add_newline = false;
command_timeout = 1000;
scan_timeout = 3;
character = {
error_symbol = "[󰊠](bold red)";
success_symbol = "[󰊠](bold green)";
vicmd_symbol = "[󰊠](bold yellow)";
format = "$symbol [|](bold bright-black) ";
};
git_commit = {commit_hash_length = 7;};
line_break.disabled = false;
lua.symbol = "[](blue) ";
python.symbol = "[](blue) ";
hostname = {
ssh_only = true;
format = "[$hostname](bold blue) ";
disabled = false;
};
};
};
}