diff options
| -rw-r--r-- | .bashrc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -17,11 +17,6 @@ alias rm='rm -i' alias l='less -N' alias dotgit='/usr/bin/git --git-dir=$HOME/code/dotfiles.git --work-tree=$HOME' -# Emacs tramp wants a simple prompt that it can recognize -if [[ "$TERM" = "dumb" ]]; then - export PS1="> " -fi - # Add to path cleanly local_pathmunge () { case ":${PATH}:" in @@ -149,6 +144,11 @@ case "$-" in source_first /usr/share/fzf/shell/key-bindings.bash ~/.fzf.bash eval "$(~/usr/local/bin/fasd --init auto)" complete -d j + + # Emacs tramp wants a simple prompt that it can recognize + if [[ "$TERM" = "dumb" ]]; then + PS1="> " + fi ;; *) # Non-interactive shells |
