Initial commit
This commit is contained in:
commit
c3fe1114b3
20 changed files with 885 additions and 0 deletions
23
home-manager/shell/starship.nix
Normal file
23
home-manager/shell/starship.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.starship.enable = true;
|
||||
|
||||
programs.starship.settings = {
|
||||
add_newline = true;
|
||||
|
||||
character =
|
||||
let char = "⮞"; charVi = "⮜";
|
||||
in {
|
||||
success_symbol = "[${char}](bold green)";
|
||||
error_symbol = "[${char}](bold red)";
|
||||
vicmd_symbol = "[${charVi}](bold green)";
|
||||
};
|
||||
|
||||
directory = {
|
||||
truncation_length = 6;
|
||||
truncation_symbol = "⋯ /";
|
||||
read_only = " 🔒";
|
||||
read_only_style = "cyan";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue