Better starship config (#4)
This commit is contained in:
commit
084f00f3b0
2 changed files with 55 additions and 48 deletions
|
@ -25,7 +25,6 @@ in {
|
|||
enable = true;
|
||||
shellInit = "
|
||||
zoxide init fish | source
|
||||
starship init fish | source
|
||||
direnv hook fish | source
|
||||
source ~/.config/op/plugins.sh
|
||||
";
|
||||
|
|
|
@ -13,8 +13,15 @@ in {
|
|||
enable = mkBoolOpt true "Whether or not to enable starship shell";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.starship = {
|
||||
config =
|
||||
mkIf cfg.enable {
|
||||
programs = {
|
||||
fish.shellInit = "
|
||||
|
||||
starship init fish | source
|
||||
";
|
||||
|
||||
starship = {
|
||||
enable = true;
|
||||
enableTransience = true;
|
||||
settings = {
|
||||
|
@ -63,4 +70,5 @@ in {
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue