Created
March 3, 2017 00:29
-
-
Save DinoChiesa/dd598d6888121bc34e130578e5d25d24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(load-file "~/elisp/emacs.el") | |
(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. | |
'(git-commit-summary-max-length 80) | |
'(ls-lisp-format-time-list (quote ("%Y-%m-%d %H:%M" "%Y-%m-%d %H:%M"))) | |
'(ls-lisp-use-localized-time-format t) | |
'(safe-local-variable-values (quote ((js-indent-level . 2)))) | |
'(temporary-file-directory "/tmp")) | |
(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. | |
'(flycheck-error ((t (:background "firebrick4")))) | |
'(flymake-errline ((t (:inherit error :background "firebrick4")))) | |
'(font-lock-comment-face ((t (:foreground "PaleVioletRed3")))) | |
'(font-lock-constant-face ((t (:foreground "DodgerBlue")))) | |
'(font-lock-function-name-face ((t (:foreground "RoyalBlue1")))) | |
'(font-lock-keyword-face ((t (:foreground "CadetBlue2")))) | |
'(font-lock-string-face ((t (:background "gray11" :foreground "MediumOrchid1")))) | |
'(font-lock-type-face ((t (:foreground "PaleGreen")))) | |
'(font-lock-variable-name-face ((t (:foreground "LightGoldenrod"))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment