summary refs log tree commit diff stats
path: root/tag-emacs
diff options
context:
space:
mode:
authorAlan Pearce2016-07-07 16:23:55 +0200
committerAlan Pearce2016-07-07 16:23:55 +0200
commit94489bb8ce88f65c6a440f4f0953ad00248a1ab9 (patch)
tree6633d57bacd2f6af73377cb3527ba647ba08fde5 /tag-emacs
parentbce550f39714f5581540413b9fa0e6f8f21fa35b (diff)
downloaddotfiles-94489bb8ce88f65c6a440f4f0953ad00248a1ab9.tar.lz
dotfiles-94489bb8ce88f65c6a440f4f0953ad00248a1ab9.tar.zst
dotfiles-94489bb8ce88f65c6a440f4f0953ad00248a1ab9.zip
Remove unused packages
Diffstat (limited to 'tag-emacs')
-rw-r--r--tag-emacs/emacs.d/init.org20
1 files changed, 0 insertions, 20 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 6217e9a..45d2ae7 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -585,17 +585,6 @@ I only use this occasionally, but it’s nice for files outside of projects.
                (recentf-mode 1)))
 #+END_SRC
 
-** spotlight
-
-An awesome way to open files on OS X.
-
-#+BEGIN_SRC emacs-lisp
-  (use-package spotlight
-    :defer 10
-    :if (eq system-type 'darwin)
-    :config (setq spotlight-tmp-file "/tmp/.emacs-spotlight-tmp-file"))
-#+END_SRC
-
 ** Tramp
 
 Tramp is awesome.  It makes SSH feel Unix-y.  The proxy setup is so
@@ -2037,15 +2026,6 @@ nice, when I remember to use it.
 
 #+END_SRC
 
-#+BEGIN_SRC emacs-lisp
-  (with-eval-after-load 'eshell
-    (use-package esh-buf-stack
-      :init (progn
-              (add-hook 'eshell-load-hook (lambda ()
-                                            (setup-eshell-buf-stack)
-                                            (bind-key "M-q" #'eshell-push-command eshell-mode-map))))))
-#+END_SRC
-
 *** Shells
 
 #+BEGIN_SRC emacs-lisp