diff options
-rw-r--r-- | init.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/init.el b/init.el index aeb4bcc..c01d49b 100644 --- a/init.el +++ b/init.el | |||
@@ -411,8 +411,10 @@ | |||
411 | (:option ibuffer-saved-filter-groups | 411 | (:option ibuffer-saved-filter-groups |
412 | '(("default" | 412 | '(("default" |
413 | ("dired" (mode . dired-mode)) | 413 | ("dired" (mode . dired-mode)) |
414 | ("customize" (mode . Custom-mode)) | ||
414 | ("emacs" (or (name . "^\\*scratch\\*$") | 415 | ("emacs" (or (name . "^\\*scratch\\*$") |
415 | (name . "^\\*Messages\\*$") | 416 | (name . "^\\*Messages\\*$") |
417 | (name . "^\\*Warnings\\*$") | ||
416 | (name . "^\\*straight-process\\*$") | 418 | (name . "^\\*straight-process\\*$") |
417 | (name . "^\\*Calendar\\*$"))) | 419 | (name . "^\\*Calendar\\*$"))) |
418 | ("git" (or (name . "^\*magit") | 420 | ("git" (or (name . "^\*magit") |
@@ -1156,6 +1158,15 @@ if ripgrep is installed, otherwise `consult-grep'." | |||
1156 | (add-to-list 'comp-deferred-compilation-deny-list "vertico")) | 1158 | (add-to-list 'comp-deferred-compilation-deny-list "vertico")) |
1157 | (vertico-mode +1)) | 1159 | (vertico-mode +1)) |
1158 | 1160 | ||
1161 | (setup (:straight vuiet) | ||
1162 | (:needs "youtube-dl" | ||
1163 | "mpv") | ||
1164 | |||
1165 | ;; lastfm.el is required too, and needs some setup: | ||
1166 | ;; https://github.com/mihaiolteanu/lastfm.el | ||
1167 | (setup (:straight lastfm) | ||
1168 | (require 'lastfm))) | ||
1169 | |||
1159 | (setup (:straight web-mode) | 1170 | (setup (:straight web-mode) |
1160 | (:option css-level-offset 2 | 1171 | (:option css-level-offset 2 |
1161 | js-indent-level 2 | 1172 | js-indent-level 2 |