Skip to content

Commit

Permalink
custom tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
evmar committed Nov 19, 2015
1 parent 193e2d4 commit dbacf93
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions emacs.d/init2.org
Expand Up @@ -71,10 +71,6 @@
** 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")))
Expand All @@ -89,10 +85,15 @@
'(org-agenda-files (quote ("~/everything.org")))
'(paragraph-separate "[ ]*$\\|-[ ]")
'(paragraph-start " \\|[ ]*$\\\\|-[ ]")
'(safe-local-variable-values (quote ((c-offsets-alist (innamespace . 0)))))
'(safe-local-variable-values
(quote
((flycheck-clang-language-standard . "c++14")
(flycheck-gcc-language-standard . "c++11")
(c-offsets-alist
(innamespace . 0)))))
'(show-paren-mode t)
'(tool-bar-mode nil)
'(uniquify-buffer-name-style (quote forward))
'(uniquify-buffer-name-style (quote forward) nil (uniquify))
'(vc-handled-backends nil)
'(visible-bell t))
(custom-set-faces
Expand All @@ -101,7 +102,6 @@
;; 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 dbacf93

Please sign in to comment.