mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 15:14:26 +00:00
starship: allow running in Emacs if vterm is used
The vterm buffer is backed by libvterm and can handle Starship prompts without issues.
This commit is contained in:
parent
db6e261794
commit
69f8e47e9e
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ in {
|
|||
mkIf (cfg.settings != { }) { source = configFile cfg.settings; };
|
||||
|
||||
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
||||
if [[ $TERM != "dumb" && -z $INSIDE_EMACS ]]; then
|
||||
if [[ $TERM != "dumb" && (-z $INSIDE_EMACS || $INSIDE_EMACS == "vterm") ]]; then
|
||||
eval "$(${cfg.package}/bin/starship init bash)"
|
||||
fi
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue