General cleanup + refactor
This commit is contained in:
parent
290cd95a4c
commit
b37aadec91
4 changed files with 5 additions and 4 deletions
|
@ -275,8 +275,8 @@ using `doom-fetch'."
|
||||||
(let ((bootstrap (assq id doom-bootstraps)))
|
(let ((bootstrap (assq id doom-bootstraps)))
|
||||||
(message "[%s] BOOTSTRAP START" id)
|
(message "[%s] BOOTSTRAP START" id)
|
||||||
(with-demoted-errors (format "[%s] ERROR: %%s" id)
|
(with-demoted-errors (format "[%s] ERROR: %%s" id)
|
||||||
(unless (funcall (cdr bootstrap))
|
(message "[%s] %s"
|
||||||
(message "[%s] DONE (already bootstrapped)" id)))))))
|
id (if (funcall (cdr bootstrap)) "SKIPPED (nothing to do)" "DONE")))))))
|
||||||
|
|
||||||
(provide 'core-lib)
|
(provide 'core-lib)
|
||||||
;;; core-lib.el ends here
|
;;; core-lib.el ends here
|
||||||
|
|
|
@ -116,6 +116,7 @@ disabled.")
|
||||||
:config
|
:config
|
||||||
(setq highlight-indent-guides-method 'character)
|
(setq highlight-indent-guides-method 'character)
|
||||||
|
|
||||||
|
;; FIXME highlight-indent-guides doesn't take advantage of injected whitespace
|
||||||
(defun doom|inject-trailing-whitespace (&optional start end)
|
(defun doom|inject-trailing-whitespace (&optional start end)
|
||||||
"The opposite of `delete-trailing-whitespace'. Injects whitespace into
|
"The opposite of `delete-trailing-whitespace'. Injects whitespace into
|
||||||
buffer so that `highlight-indent-guides-mode' will display uninterrupted indent
|
buffer so that `highlight-indent-guides-mode' will display uninterrupted indent
|
||||||
|
|
|
@ -154,8 +154,8 @@ enable multiple minor modes for the same regexp.")
|
||||||
(with-demoted-errors "AUTOLOAD ERROR: %s"
|
(with-demoted-errors "AUTOLOAD ERROR: %s"
|
||||||
(require 'autoloads doom-autoload-file t))
|
(require 'autoloads doom-autoload-file t))
|
||||||
|
|
||||||
(require 'core-ui) ; draw me like one of your French editors
|
|
||||||
(unless noninteractive
|
(unless noninteractive
|
||||||
|
(require 'core-ui) ; draw me like one of your French editors
|
||||||
(require 'core-popups) ; taming sudden yet inevitable windows
|
(require 'core-popups) ; taming sudden yet inevitable windows
|
||||||
(require 'core-editor) ; baseline configuration for text editing
|
(require 'core-editor) ; baseline configuration for text editing
|
||||||
(require 'core-projects) ; making Emacs project-aware
|
(require 'core-projects) ; making Emacs project-aware
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
(setq processing-location "/usr/local/bin/processing-java"
|
(setq processing-location "/usr/local/bin/processing-java"
|
||||||
processing-application-dir "/Applications/Processing.app"
|
processing-application-dir "/Applications/Processing.app"
|
||||||
processing-sketchbook-dir "~/Dropbox/work/pde"
|
processing-sketchbook-dir "~/work/pde"
|
||||||
processing-output-dir "/tmp")
|
processing-output-dir "/tmp")
|
||||||
|
|
||||||
(map! :map processing-mode-map
|
(map! :map processing-mode-map
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue