From 6623312f6d2dddcd63fa8a7f4ff4fb0dfa927529 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Wed, 6 Jun 2018 12:57:25 -0700 Subject: [PATCH] Move editor stuff below MELPA line --- dotfiles/emacs.d/init.el | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 92ef4af..702623a 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -145,19 +145,6 @@ (setq ibuffer-show-empty-filter-groups nil) ;;-------------------------------------------------------------------------------------- -;; handy editor stuff -;;-------------------------------------------------------------------------------------- - -(require 'ws-butler) -(ws-butler-global-mode) - -;; Comment this if you dont mind git diffs complaining about missing ending newlines. -(setq require-final-newline t) - -;; Add new line if using C-n navigates to the end of the buffer -(setq next-line-add-newlines t) - -;;-------------------------------------------------------------------------------------- ;; Enable MELPA ;;-------------------------------------------------------------------------------------- @@ -193,6 +180,19 @@ (add-hook 'clojure-mode-hook #'enable-paredit-mode) ;;-------------------------------------------------------------------------------------- +;; handy editor stuff +;;-------------------------------------------------------------------------------------- + +(require 'ws-butler) +(ws-butler-global-mode t) + +;; Comment this if you dont mind git diffs complaining about missing ending newlines. +(setq require-final-newline t) + +;; Add new line if using C-n navigates to the end of the buffer +(setq next-line-add-newlines t) + +;;-------------------------------------------------------------------------------------- ;; Fill column indicator (currently set to 120 characters) ;;--------------------------------------------------------------------------------------