(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(add-to-list 'load-path "C:/Users/Eric Fowler/Documents/.emacs.d/tramp/lisp")
(require 'tramp)
(require 'trace)
(setq tramp-verbose 8)
(setq tramp-debug-buffer t)
(setq tramp-default-method "ssh")
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
case "$TERM" in
"dumb")
PS1="> "
;;
xterm*|rxvt*|eterm*|screen*)
# PS1="my fancy multi-line prompt > "
;;
*)
PS1="> "
;;
esac
echo .BASHRC ran
Looks like a prompt problem at this point. But I don't see why this is not changing the prompt properly.