new emacs user here.
I'm trying to get tramp to work but can't figure out what's wrong. I do:
M-x councel-tramp select /ssh:myserver But I just get "Waiting for prompts from remote shell" and it hangs for ever. I saw this related post on stackexchange: Tramp: Waiting for prompts from remote shell
Which suggests adding
case "$TERM" in "dumb") export PS1="> " ;; xterm*|rxvt*|eterm*|screen*) tty -s && export PS1="some crazy prompt stuff" ;; esac to the .zshrc or .bashrc, but that doesn't make a difference for me. Can someone help me fix this? Any idea what's wrong?
Thanks!