1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02: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:
Robert Helgesson 2020-05-15 22:53:26 +02:00
parent db6e261794
commit 69f8e47e9e
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -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
'';