;; Host specific configuration ------------------------------------------------
(let ((host (system-name)))
(cond ((equal host "aria.cielonegro.org")
- (setq browse-url-firefox-program "/opt/local/bin/firefox"))))
+ (progn
+ ;; Use firefox as the default browser.
+ (setq browse-url-firefox-program "/opt/local/bin/firefox")
+ ;; Specify how to connect to some of the remote servers.
+ (setq tramp-default-proxies-alist nil)
+ (add-to-list 'tramp-default-proxies-alist
+ '("rd8" nil "/sshx:pho@yebisu1.ymir.jp:"))
+ (add-to-list 'tramp-default-proxies-alist
+ '("yebisu1\\.ymir\\.jp" nil "/sshx:pho@boss:"))))))
+
;; Settings for Browser --------------------------------------------------------
(setq browse-url-browser-function 'w3m-browse-url)