Xonsh and Emacs don't get along well

This commit is contained in:
2021-11-05 17:49:49 -07:00
parent 06a88593a8
commit 203aebd6a9
2 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*- ;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
(setq shell-file-name "/usr/bin/bash")
;; Place your private configuration here! Remember, you do not need to run 'doom ;; Place your private configuration here! Remember, you do not need to run 'doom
;; sync' after modifying this file! ;; sync' after modifying this file!

View File

@@ -86,7 +86,7 @@ aliases["vv"] = _vv
# Fix prompt for Emacs TRAMP # Fix prompt for Emacs TRAMP
# https://github.com/oh-my-fish/theme-bobthefish/issues/148 # https://github.com/oh-my-fish/theme-bobthefish/issues/148
if $TERM == "dumb": if not ${...}.get("TERM") or $TERM == "dumb":
$PROMPT = "$ " $PROMPT = "$ "
$RIGHT_PROMPT = None $RIGHT_PROMPT = None
$BOTTOM_TOOLBAR = None $BOTTOM_TOOLBAR = None