Skip to content

Commit

Permalink
reindent custom block
Browse files Browse the repository at this point in the history
  • Loading branch information
evmar committed Nov 19, 2015
1 parent 33b7ce5 commit 193e2d4
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions emacs.d/init2.org
Expand Up @@ -70,38 +70,38 @@
* global settings
** custom variables
#+BEGIN_SRC emacs-lisp
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(coffee-tab-width 2)
'(column-number-mode t)
'(erc-hide-list (quote ("JOIN" "PART" "QUIT")))
'(erc-nick "evmar")
'(erc-server "irc.oftc.net")
'(erc-user-full-name "Evan Martin")
'(evil-shift-width 2)
'(evil-want-C-i-jump nil)
'(haskell-program-name "ghci")
'(ido-enable-tramp-completion nil)
'(js-indent-level 2)
'(org-agenda-files (quote ("~/everything.org")))
'(paragraph-separate "[ ]*$\\|-[ ]")
'(paragraph-start " \\|[ ]*$\\\\|-[ ]")
'(safe-local-variable-values (quote ((c-offsets-alist (innamespace . 0)))))
'(show-paren-mode t)
'(tool-bar-mode nil)
'(uniquify-buffer-name-style (quote forward))
'(vc-handled-backends nil)
'(visible-bell t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(whitespace-line ((t (:underline "red")))))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(coffee-tab-width 2)
'(column-number-mode t)
'(erc-hide-list (quote ("JOIN" "PART" "QUIT")))
'(erc-nick "evmar")
'(erc-server "irc.oftc.net")
'(erc-user-full-name "Evan Martin")
'(evil-shift-width 2)
'(evil-want-C-i-jump nil)
'(haskell-program-name "ghci")
'(ido-enable-tramp-completion nil)
'(js-indent-level 2)
'(org-agenda-files (quote ("~/everything.org")))
'(paragraph-separate "[ ]*$\\|-[ ]")
'(paragraph-start " \\|[ ]*$\\\\|-[ ]")
'(safe-local-variable-values (quote ((c-offsets-alist (innamespace . 0)))))
'(show-paren-mode t)
'(tool-bar-mode nil)
'(uniquify-buffer-name-style (quote forward))
'(vc-handled-backends nil)
'(visible-bell t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(whitespace-line ((t (:underline "red")))))

#+END_SRC

** font
Expand Down

0 comments on commit 193e2d4

Please sign in to comment.