From dbacf93527cd149e53f63838904bddb2f8ceda9c Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Thu, 19 Nov 2015 10:06:01 -0800 Subject: [PATCH] custom tweaks --- emacs.d/init2.org | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/emacs.d/init2.org b/emacs.d/init2.org index e08bc6a..3dfbbb4 100644 --- a/emacs.d/init2.org +++ b/emacs.d/init2.org @@ -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"))) @@ -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 @@ -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