mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 09:24:17 +01:00
starship: Separate from fish
This commit is contained in:
parent
2dd6a9f5c3
commit
79003388c2
@ -140,78 +140,4 @@ let VARIABLES = import ../src/variables.nix; in {
|
|||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.starship = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
add_newline = false;
|
|
||||||
|
|
||||||
directory = {
|
|
||||||
style = "purple";
|
|
||||||
read_only = " ro";
|
|
||||||
};
|
|
||||||
|
|
||||||
git_branch = {
|
|
||||||
style = "yellow";
|
|
||||||
symbol = "";
|
|
||||||
};
|
|
||||||
|
|
||||||
character = {
|
|
||||||
success_symbol = "[>](red)[>](green)[>](blue)";
|
|
||||||
error_symbol = "[>](cyan)[>](purple)[>](yellow)";
|
|
||||||
vicmd_symbol = "[<](bold green)";
|
|
||||||
};
|
|
||||||
|
|
||||||
line_break.disabled = true;
|
|
||||||
container.disabled = true;
|
|
||||||
|
|
||||||
nodejs = {
|
|
||||||
format = "with [$symbol($version )]($style)";
|
|
||||||
symbol = "node ";
|
|
||||||
version_format = "\${major}";
|
|
||||||
disabled = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
git_commit.tag_symbol = " tag ";
|
|
||||||
|
|
||||||
git_status = {
|
|
||||||
ahead = ">";
|
|
||||||
behind = "<";
|
|
||||||
diverged = "<>";
|
|
||||||
renamed = "r";
|
|
||||||
deleted = "x";
|
|
||||||
};
|
|
||||||
|
|
||||||
aws.symbol = "aws ";
|
|
||||||
cobol.symbol = "cobol ";
|
|
||||||
conda.symbol = "conda ";
|
|
||||||
crystal.symbol = "cr ";
|
|
||||||
cmake.symbol = "cmake ";
|
|
||||||
dart.symbol = "dart ";
|
|
||||||
deno.symbol = "deno ";
|
|
||||||
dotnet.symbol = ".NET ";
|
|
||||||
docker_context.symbol = "docker ";
|
|
||||||
elixir.symbol = "exs ";
|
|
||||||
elm.symbol = "elm ";
|
|
||||||
golang.symbol = "go ";
|
|
||||||
hg_branch.symbol = "hg ";
|
|
||||||
java.symbol = "java ";
|
|
||||||
julia.symbol = "jl ";
|
|
||||||
kotlin.symbol = "kt ";
|
|
||||||
memory_usage.symbol = "memory ";
|
|
||||||
nim.symbol = "nim ";
|
|
||||||
nix_shell.symbol = "nix ";
|
|
||||||
ocaml.symbol = "ml ";
|
|
||||||
package.symbol = "pkg ";
|
|
||||||
perl.symbol = "pl ";
|
|
||||||
php.symbol = "php ";
|
|
||||||
purescript.symbol = "purs ";
|
|
||||||
python.symbol = "python ";
|
|
||||||
ruby.symbol = "ruby ";
|
|
||||||
rust.symbol = "rust ";
|
|
||||||
scala.symbol = "scala ";
|
|
||||||
swift.symbol = "swift ";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
75
modules/starship.nix
Normal file
75
modules/starship.nix
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
{
|
||||||
|
programs.starship = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
add_newline = false;
|
||||||
|
|
||||||
|
directory = {
|
||||||
|
style = "purple";
|
||||||
|
read_only = " ro";
|
||||||
|
};
|
||||||
|
|
||||||
|
git_branch = {
|
||||||
|
style = "yellow";
|
||||||
|
symbol = "";
|
||||||
|
};
|
||||||
|
|
||||||
|
character = {
|
||||||
|
success_symbol = "[>](red)[>](green)[>](blue)";
|
||||||
|
error_symbol = "[>](cyan)[>](purple)[>](yellow)";
|
||||||
|
vicmd_symbol = "[<](bold green)";
|
||||||
|
};
|
||||||
|
|
||||||
|
line_break.disabled = true;
|
||||||
|
container.disabled = true;
|
||||||
|
|
||||||
|
nodejs = {
|
||||||
|
format = "with [$symbol($version )]($style)";
|
||||||
|
symbol = "node ";
|
||||||
|
version_format = "\${major}";
|
||||||
|
disabled = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
git_commit.tag_symbol = " tag ";
|
||||||
|
|
||||||
|
git_status = {
|
||||||
|
ahead = ">";
|
||||||
|
behind = "<";
|
||||||
|
diverged = "<>";
|
||||||
|
renamed = "r";
|
||||||
|
deleted = "x";
|
||||||
|
};
|
||||||
|
|
||||||
|
aws.symbol = "aws ";
|
||||||
|
cobol.symbol = "cobol ";
|
||||||
|
conda.symbol = "conda ";
|
||||||
|
crystal.symbol = "cr ";
|
||||||
|
cmake.symbol = "cmake ";
|
||||||
|
dart.symbol = "dart ";
|
||||||
|
deno.symbol = "deno ";
|
||||||
|
dotnet.symbol = ".NET ";
|
||||||
|
docker_context.symbol = "docker ";
|
||||||
|
elixir.symbol = "exs ";
|
||||||
|
elm.symbol = "elm ";
|
||||||
|
golang.symbol = "go ";
|
||||||
|
hg_branch.symbol = "hg ";
|
||||||
|
java.symbol = "java ";
|
||||||
|
julia.symbol = "jl ";
|
||||||
|
kotlin.symbol = "kt ";
|
||||||
|
memory_usage.symbol = "memory ";
|
||||||
|
nim.symbol = "nim ";
|
||||||
|
nix_shell.symbol = "nix ";
|
||||||
|
ocaml.symbol = "ml ";
|
||||||
|
package.symbol = "pkg ";
|
||||||
|
perl.symbol = "pl ";
|
||||||
|
php.symbol = "php ";
|
||||||
|
purescript.symbol = "purs ";
|
||||||
|
python.symbol = "python ";
|
||||||
|
ruby.symbol = "ruby ";
|
||||||
|
rust.symbol = "rust ";
|
||||||
|
scala.symbol = "scala ";
|
||||||
|
swift.symbol = "swift ";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user