diff options
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 32 |
1 files changed, 0 insertions, 32 deletions
@@ -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) |
