summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config.org32
1 files changed, 29 insertions, 3 deletions
diff --git a/config.org b/config.org index 2ada3a3..17faf7f 100644 --- a/config.org +++ b/config.org
@@ -210,6 +210,7 @@ This is extremely fiddly and I'd love another option.
210 (define-key acdw/map (kbd "M-o") #'crux-other-window-or-switch-buffer) 210 (define-key acdw/map (kbd "M-o") #'crux-other-window-or-switch-buffer)
211#+end_src 211#+end_src
212 212
213
213*** The *Help* window 214*** The *Help* window
214 215
215I want to select the *Help* window by default, so I can easily quit it. 216I want to select the *Help* window by default, so I can easily quit it.
@@ -638,6 +639,14 @@ minor-modes from the modeline.
638 :repo "raxod502/blackout")) 639 :repo "raxod502/blackout"))
639#+end_src 640#+end_src
640 641
642**** Which-function mode
643
644Shows where we are in the modeline.
645
646#+begin_src emacs-lisp :noweb-ref modes
647 (which-function-mode +1)
648#+end_src
649
641*** Setting faces 650*** Setting faces
642 651
643It took me a while to find a function that'll let me customize faces 652It took me a while to find a function that'll let me customize faces
@@ -740,7 +749,12 @@ to /hide/ those contents.
740 read-file-name-completion-ignore-case t) 749 read-file-name-completion-ignore-case t)
741#+end_src 750#+end_src
742 751
743*** Selectrum :package: 752*** COMMENT Selectrum :package:
753
754*COMMENT 2021-02-01*: For some reason, selectrum will randomly do a thing where
755it, like, flashes up and down in the minibuffer? I don't know how to explain
756it, it's super weird. I guess I should file a bug report ... but until then,
757I'll just use =icomplete-vertical=.
744 758
745My minibuffer completion system uses =selectrum=, =prescient=, =company=, 759My minibuffer completion system uses =selectrum=, =prescient=, =company=,
746and =marginalia=. At some point, I'd like to take a deep dive in =embark= 760and =marginalia=. At some point, I'd like to take a deep dive in =embark=
@@ -755,6 +769,17 @@ for now .... I just want to see my completions.
755 (selectrum-mode +1) 769 (selectrum-mode +1)
756#+end_src 770#+end_src
757 771
772*** Icomplete
773
774#+begin_src emacs-lisp :noweb-ref packages
775 (straight-use-package 'icomplete-vertical)
776#+end_src
777
778#+begin_src emacs-lisp :noweb-ref modes
779 (icomplete-mode +1)
780 (icomplete-vertical-mode +1)
781#+end_src
782
758*** Prescient :package: 783*** Prescient :package:
759 784
760#+begin_src emacs-lisp :noweb-ref packages 785#+begin_src emacs-lisp :noweb-ref packages
@@ -1949,8 +1974,8 @@ See [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/mast
1949 ("https://botanistinthekitchen.blog/feed/" blags food) 1974 ("https://botanistinthekitchen.blog/feed/" blags food)
1950 ("https://www.careercenterbr.com/feed/" work) 1975 ("https://www.careercenterbr.com/feed/" work)
1951 ("https://blog.ebrpl.com/feed/" work) 1976 ("https://blog.ebrpl.com/feed/" work)
1952 (,(concat 1977 (,(concat ; long-ass url
1953 "https://lemmy.ml/feeds/front/" ; long-ass url 1978 "https://lemmy.ml/feeds/front/"
1954 "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9." 1979 "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9."
1955 "eyJpZCI6MTY4MjQsImlzcyI6ImxlbW15Lm1sIn0" 1980 "eyJpZCI6MTY4MjQsImlzcyI6ImxlbW15Lm1sIn0"
1956 ".yE2zUGjvlEuTZZi3TiF9HR7L7ITM9f_" 1981 ".yE2zUGjvlEuTZZi3TiF9HR7L7ITM9f_"
@@ -1989,6 +2014,7 @@ See [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/mast
1989 ("https://m455.neocities.org/feed.rss" tildes fwends) 2014 ("https://m455.neocities.org/feed.rss" tildes fwends)
1990 ("https://eli.li/feed.rss" tildes fwends) 2015 ("https://eli.li/feed.rss" tildes fwends)
1991 ("https://aiweirdness.com/rss" tech) 2016 ("https://aiweirdness.com/rss" tech)
2017 ("http://tilde.town/~m455/javapool.rss" tilde)
1992 ("https://spwhitton.name/blog/index.rss" blags) 2018 ("https://spwhitton.name/blog/index.rss" blags)
1993 ("https://www.theadvocate.com/search/?f=rss&t=article&l=50" news) 2019 ("https://www.theadvocate.com/search/?f=rss&t=article&l=50" news)
1994 )) 2020 ))