commit d3558d2aea6b2667294706f3624e88f42c4b03b0
parent 886bebe82f5a14ea97d1b2305f041be06775dff3
Author: rsiddharth <rsiddharth@ninthfloor.org>
Date: Thu, 3 Mar 2016 21:52:53 -0500
.emacs: removed extraneous blank lines.
Diffstat:
1 file changed, 0 insertions(+), 11 deletions(-)
diff --git a/.emacs b/.emacs
@@ -18,13 +18,11 @@
(setq user-full-name "rsiddharth")
(setq user-mail-address "rsiddharth@ninthfloor.org")
-
;; startup
(setq inhibit-startup-screen t)
(setq initial-buffer-choice "~/v/git/rsd/notes/scratchpad.org")
(setq initial-scratch-message ";; 42")
-
;; disable things
(dolist (mode '(tool-bar-mode
scroll-bar-mode
@@ -32,19 +30,16 @@
menu-bar-mode))
(when (fboundp mode) (funcall mode -1)))
-
;; enable things
(dolist (mode '(column-number-mode))
(when (fboundp mode) (funcall mode 1)))
-
;; stop cursor blinking in urxvt
(setq visible-cursor nil)
;; enable things
(put 'narrow-to-region 'disabled nil)
-
;; tabs and spacing
(setq tab-width 4)
(setq-default indent-tabs-mode nil)
@@ -59,7 +54,6 @@
;; start server
(server-start)
-
;; org-mode
(setq org-agenda-files "~/.emacs.d/agenda.org")
@@ -73,12 +67,10 @@
(setq org-log-done 'time)
-
;; bookmarks
(setq bookmark-default-file "~/.emacs.d/bookmarks.el")
(setq bookmark-save-flag 1)
-
;; melpa config
(require 'package)
(add-to-list 'package-archives
@@ -101,12 +93,10 @@
(when (not (package-installed-p p))
(package-install p)))
-
;; auto-complete mode.
(require 'auto-complete-config)
(ac-config-default)
-
;; helm
(require 'helm)
(require 'helm-config)
@@ -130,7 +120,6 @@
(global-set-key (kbd "C-x g") 'magit-status)
(global-set-key (kbd "C-x M-g") 'magit-dispatch-popup)
-
;; custom-set-faces was added by Custom.
(custom-set-faces
;; custom-set-faces was added by Custom.