diff options
| author | Craig Jennings <c@cjennings.net> | 2024-04-28 20:59:39 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-04-28 20:59:39 -0500 |
| commit | e9e5696bc95d34aad8eb561d7458ac21b06359b0 (patch) | |
| tree | a3a12c66a1774c3d8aa7f66aeadd5e004ecde8d7 /modules/config-utilities.el | |
| parent | 95d3a96bf150b1349dd73479e2a117b1cf95c6bd (diff) | |
| download | dotemacs-e9e5696bc95d34aad8eb561d7458ac21b06359b0.tar.gz dotemacs-e9e5696bc95d34aad8eb561d7458ac21b06359b0.zip | |
bug fixing, repo changes, etc.
- add font lock studio,
- don't disable Emacs native vc backend functions
- change elpa mirror location
- change default location for localrepo
- update packages
- add constant for journals directory and ensure it exists on launch
- move project file to org-roam
- add remote repository reset to scripts folder
Diffstat (limited to 'modules/config-utilities.el')
| -rw-r--r-- | modules/config-utilities.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/config-utilities.el b/modules/config-utilities.el index aeeed5fc..c6942015 100644 --- a/modules/config-utilities.el +++ b/modules/config-utilities.el @@ -104,8 +104,14 @@ Will recompile natively if supported, or byte-compiled if not." (cl-sort features-vec 'string-lessp) (cl-loop for x across features-vec do (insert (format " - %-25s: %s\n" x - (locate-library (symbol-name x)))))) - (goto-char (point-min)))) + (locate-library (symbol-name x)))))) + (goto-char (point-min)))) + +;; ------------------------------ Font Lock Studio ----------------------------- +;; debugger for font lock keywords + +(use-package font-lock-studio + :demand t) (provide 'config-utilities) ;;; config-utilities.el ends here |
