diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/README.md b/README.md index 5bd0a6b..f2e948c 100644 --- a/README.md +++ b/README.md | |||
@@ -332,7 +332,6 @@ from [EmacsWiki](https://www.emacswiki.org/emacs/AlarmBell#h5o-3). | |||
332 | 332 | ||
333 | (cuss sml/no-confirm-load-theme t | 333 | (cuss sml/no-confirm-load-theme t |
334 | "Pass the NO-CONFIRM flag to `load-theme'.") | 334 | "Pass the NO-CONFIRM flag to `load-theme'.") |
335 | (cuss sml/theme 'respectful) | ||
336 | 335 | ||
337 | (sml/setup) | 336 | (sml/setup) |
338 | 337 | ||
@@ -398,13 +397,16 @@ helper function, though, to add things to the whitelist. | |||
398 | (run-at-time (nth 1 (split-string (sunrise-sunset))) | 397 | (run-at-time (nth 1 (split-string (sunrise-sunset))) |
399 | (* 60 60 24) | 398 | (* 60 60 24) |
400 | (lambda () | 399 | (lambda () |
400 | (sml/apply-theme 'light) | ||
401 | (modus-themes-load-operandi))) | 401 | (modus-themes-load-operandi))) |
402 | 402 | ||
403 | ;; sunset | 403 | ;; sunset |
404 | (run-at-time (nth 4 (split-string (sunrise-sunset))) | 404 | (run-at-time (nth 4 (split-string (sunrise-sunset))) |
405 | (* 60 60 24) | 405 | (* 60 60 24) |
406 | (lambda () | 406 | (lambda () |
407 | (modus-themes-load-vivendi))) | 407 | (sml/apply-theme 'dark) |
408 | (modus-themes-load-vivendi) | ||
409 | (sml/setup))) | ||
408 | 410 | ||
409 | 411 | ||
410 | ### Fonts | 412 | ### Fonts |
@@ -934,6 +936,13 @@ I’ve pretty much cribbed this from [recentf-remove-sudo-tramp-prefix](https:// | |||
934 | (add-hook 'before-save-hook #'acdw/whitespace-cleanup-maybe) | 936 | (add-hook 'before-save-hook #'acdw/whitespace-cleanup-maybe) |
935 | 937 | ||
936 | 938 | ||
939 | ### Expand region | ||
940 | |||
941 | (straight-use-package 'expand-region) | ||
942 | |||
943 | (global-set-key (kbd "C-=") #'er/expand-region) | ||
944 | |||
945 | |||
937 | # Programming | 946 | # Programming |
938 | 947 | ||
939 | 948 | ||
@@ -1021,6 +1030,10 @@ I’ve pretty much cribbed this from [recentf-remove-sudo-tramp-prefix](https:// | |||
1021 | 1030 | ||
1022 | (straight-use-package 'janet-mode) | 1031 | (straight-use-package 'janet-mode) |
1023 | (require 'janet-mode) | 1032 | (require 'janet-mode) |
1033 | |||
1034 | (straight-use-package 'inf-janet-mode) | ||
1035 | |||
1036 | (add-hook 'janet-mode-hook #'inf-janet-minor-mode) | ||
1024 | 1037 | ||
1025 | 1038 | ||
1026 | ### INI | 1039 | ### INI |