summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRavi R Kiran <aine.marina@gmail.com>2015-10-25 04:14:34 (GMT)
committerRavi R Kiran <aine.marina@gmail.com>2015-10-25 04:17:28 (GMT)
commit418880d18b1479141127754e8a8021aa12421125 (patch)
treee752cd93653ae402eee7fdc738a42b1d2fdef03b
parentc9ea2b1a4659139ca27e9d0a31720a9eb151ccd1 (diff)
downloaddotemacs-418880d18b1479141127754e8a8021aa12421125.zip
dotemacs-418880d18b1479141127754e8a8021aa12421125.tar.gz
dotemacs-418880d18b1479141127754e8a8021aa12421125.tar.bz2
Remove long-unused packages
-rw-r--r--init.el32
1 files changed, 0 insertions, 32 deletions
diff --git a/init.el b/init.el
index f38699a..30ab3a2 100644
--- a/init.el
+++ b/init.el
@@ -61,30 +61,6 @@
(require 'use-package)
(require 'diminish)
-;; Show full frame windows for certain commands
-(use-package fullframe
- :ensure t
- )
-
-;; ---------------------------------------------------------------------
-;; Stolen from purcell/emacs.d/init-utils.el
-(defmacro after-load (feature &rest body)
- "After FEATURE is loaded, evaluate BODY."
- (declare (indent defun))
- `(eval-after-load ,feature
- '(progn ,@body)))
-
-(defun sanityinc/string-all-matches (regex str &optional group)
- "Find all matches for `REGEX' within `STR', returning the full match string or group `GROUP'."
- (let ((result nil)
- (pos 0)
- (group (or group 0)))
- (while (string-match regex str pos)
- (push (match-string group str) result)
- (setq pos (match-end group)))
- result))
-;; ---------------------------------------------------------------------
-
(defvar ravi/use-helm-instead-of-ido t
"Prefer helm to ido")
@@ -92,14 +68,6 @@
(load-file (ravi/emacs-file "local.el"))
)
-;; Auto indent mode must be enabled before autopair and yasnippet
-(use-package auto-indent-mode
- :config (auto-indent-global-mode)
- :diminish auto-indent-mode
- :disabled t ;; this mode tries to do way too much
- :ensure t
- )
-
(use-package s :ensure t)
(require 's)
(require 'ravi-ergodox-mode)