summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.el1
-rw-r--r--lisp/init-ido.el26
2 files changed, 0 insertions, 27 deletions
diff --git a/init.el b/init.el
index 8ccbaef..e2f92f8 100644
--- a/init.el
+++ b/init.el
@@ -160,7 +160,6 @@
(load "email.el")
(load "init-org.el")
-(load "init-ido.el")
(load "init-completion.el")
(load "init-geiser.el")
(load "init-god-mode.el")
diff --git a/lisp/init-ido.el b/lisp/init-ido.el
deleted file mode 100644
index 5cbf566..0000000
--- a/lisp/init-ido.el
+++ /dev/null
@@ -1,26 +0,0 @@
-;; ido mode
-(require 'ido)
-(require 'ido-vertical-mode)
-(ido-mode 1)
-(ido-vertical-mode 1)
-(setq ido-vertical-define-keys 'C-n-and-C-p-only)
-(setq ido-ubiquitous-max-items 50000)
-;; hit ~ to go straight to the home directory in ido mode
-(add-hook 'ido-setup-hook
- (lambda ()
- ;; Go straight home
- (define-key ido-file-completion-map
- (kbd "~")
- (lambda ()
- (interactive)
- (if (looking-back "/")
- (insert "~/")
- (call-interactively 'self-insert-command))))))
-
-;; Use ido everywhere
-(require 'ido-ubiquitous)
-(ido-ubiquitous-mode 1)
-(fset 'yes-or-no-p 'y-or-n-p)
-
-;; open file at point with C-x C-f
-(setq ido-use-filename-at-point 'guess)