refactor(shell): split shell config
This commit is contained in:
parent
fe0d7069c1
commit
22bf1600b1
7 changed files with 102 additions and 85 deletions
18
home/shell/starship.nix
Normal file
18
home/shell/starship.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# starship prompt
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
settings = {
|
||||
add_newline = false;
|
||||
status.disabled = false;
|
||||
status.symbol = "❌ ";
|
||||
aws.disabled = true;
|
||||
gcloud.disabled = true;
|
||||
|
||||
# kitty/neovim don't play well with multi-width emojis
|
||||
nix_shell.symbol = " ";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue