summaryrefslogtreecommitdiff
path: root/custom.el
diff options
context:
space:
mode:
authorbenj <benj@rse8.com>2019-04-16 20:34:17 -0700
committerbenj <benj@rse8.com>2019-04-16 20:34:17 -0700
commitfaeeda87a3a4f615ba57411175581265eddc1a7c (patch)
tree267e1508e6953dde6886916e3c6dcb0217380229 /custom.el
parentff2fb190c5b4a80df3a70c07425519c43c664319 (diff)
downloademacs-faeeda87a3a4f615ba57411175581265eddc1a7c.tar
emacs-faeeda87a3a4f615ba57411175581265eddc1a7c.tar.gz
emacs-faeeda87a3a4f615ba57411175581265eddc1a7c.tar.bz2
emacs-faeeda87a3a4f615ba57411175581265eddc1a7c.tar.lz
emacs-faeeda87a3a4f615ba57411175581265eddc1a7c.tar.xz
emacs-faeeda87a3a4f615ba57411175581265eddc1a7c.tar.zst
emacs-faeeda87a3a4f615ba57411175581265eddc1a7c.zip
flycheck; go; rust; org; treemacs
Diffstat (limited to '')
-rw-r--r--custom.el26
1 files changed, 24 insertions, 2 deletions
diff --git a/custom.el b/custom.el
index 836346c..e948b38 100644
--- a/custom.el
+++ b/custom.el
@@ -1,7 +1,29 @@
;; reserved for all local customization added by emacs
;; do not modify
-(custom-set-variables)
-(custom-set-faces)
+(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.
+ '(auto-insert-directory (locate-user-emacs-file "templates/auto-insert"))
+ '(c-default-style "linux")
+ '(custom-safe-themes
+ '("8aebf25556399b58091e533e455dd50a6a9cba958cc4ebb0aab175863c25b9a4" "3c83b3676d796422704082049fc38b6966bcad960f896669dfc21a7a37a748fa" default))
+ '(flycheck-display-errors-function #'flycheck-pos-tip-error-messages)
+ '(package-selected-packages
+ '(erlang rust-mode flymake-go go-mode gradle-mode treemacs-projectile treemacs protobuf-mode yaml-mode web-mode visual-regexp-steroids systemd solarized-theme smart-mode-line slime purescript-mode projectile-ripgrep play-routes-mode paredit org-bullets multiple-cursors modern-cpp-font-lock magit lsp-ui ido-vertical-mode highlight-escape-sequences flycheck-pos-tip flycheck-haskell flycheck-clojure flycheck-clangcheck flx-ido ensime ember-mode elm-mode dockerfile-mode cquery company-lsp company-glsl company-c-headers cmake-mode clojure-snippets clojure-mode-extra-font-locking ace-window))
+ '(safe-local-variable-values '((projectile-project-run-cmd . "./build/jmessageGtk"))))
+(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.
+ '(default ((t (:height 90 :width normal :family "Source Code Pro Medium"))))
+ '(org-level-1 ((t (:inherit outline-1 :height 1.0))))
+ '(org-level-2 ((t (:inherit outline-2 :height 1.0))))
+ '(org-level-3 ((t (:inherit outline-3 :height 1.0))))
+ '(org-level-4 ((t (:inherit outline-4 :height 1.0))))
+ '(org-level-5 ((t (:inherit outline-5 :height 1.0)))))
(require 'setup-custom)
(provide 'custom)
;;; custom.el ends here