From 418880d18b1479141127754e8a8021aa12421125 Mon Sep 17 00:00:00 2001 From: Ravi R Kiran Date: Sat, 24 Oct 2015 21:14:34 -0700 Subject: Remove long-unused packages 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) -- cgit v0.10.1