This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun tramp-term--select-host () | |
"Return a host from a list of hosts." | |
(let* ((crm-separator "@") | |
(default-host (tramp-term-default-host))) | |
(completing-read-multiple | |
(tramp-term-prompt default-host) | |
(tramp-term--parse-hosts "~/.ssh/config") | |
nil | |
nil | |
nil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq url-proxy-services | |
'(("http" . "168.219.61.252:8080"))) | |
(server-start) | |
(put 'upcase-region 'disabled nil) | |
(fset 'find-next-tag "\C-u\256") ; macro for C-u M-. | |
(fset 'find-prev-tag "\C-u-\256") ; macro for C-u - M-. | |
(global-set-key "\M-]" 'find-next-tag) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; '(company-idle-delay 1.0) | |
;; '(flycheck-idle-change-delay 2.0) | |
;;; tide.el --- Typescript Interactive Development Environment -*- lexical-binding: t -*- | |
;; Copyright (C) 2015 Anantha Kumaran. | |
;; Author: Anantha kumaran <[email protected]> | |
;; URL: http://github.com/ananthakumaran/tide | |
;; Version: 2.6.2 |