diff options
author | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-01-02 22:06:27 -0700 |
---|---|---|
committer | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-01-02 22:06:27 -0700 |
commit | f7e327261bb4e36100d466efc86fa5513d4e4876 (patch) | |
tree | a8d3ece8ebf49f0cf7e4761612754859ecd914f3 /init.el | |
parent | 7a0807353e9e75b9a296da8a24485254ae245cfc (diff) |
Lots of additions to README
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 35 |
1 files changed, 19 insertions, 16 deletions
@@ -12,6 +12,12 @@ :config (which-key-mode)) +;;; Utilities + +;; Magit: best Git client to ever exist +(use-package magit + :ensure t) + ;;; Minibuffer and completion ;; Vertico: better vertical completion for minibuffer commands @@ -35,17 +41,17 @@ ;; Part of corfu (use-package corfu-popupinfo - :after corfu - :hook (corfu-mode . corfu-popupinfo-mode) - :bind (:map corfu-map - ("M-h" . corfu-popupinfo-toggle) - ("M-k" . corfu-popupinfo-scroll-down) - ("M-j" . corfu-popupinfo-scroll-up)) - :custom - (corfu-popupinfo-delay '(0.25 . 0.1)) - (corfu-popupinfo-hide nil) - :config - (corfu-popupinfo-mode)) + :after corfu + :hook (corfu-mode . corfu-popupinfo-mode) + :bind (:map corfu-map + ("M-h" . corfu-popupinfo-toggle) + ("M-k" . corfu-popupinfo-scroll-down) + ("M-j" . corfu-popupinfo-scroll-up)) + :custom + (corfu-popupinfo-delay '(0.25 . 0.1)) + (corfu-popupinfo-hide nil) + :config + (corfu-popupinfo-mode)) ;; Make corfu popup come up in terminal overlay (use-package corfu-terminal @@ -56,6 +62,7 @@ ;; Pretty icons for corfu (use-package kind-icon + :if (display-graphic-p) :ensure t :after corfu :config @@ -64,8 +71,7 @@ ;; Consult: Misc. enhanced commands (use-package consult :ensure t - :bind ( - ("C-x b" . consult-buffer) ;; orig. switch-to-buffer + :bind (("C-x b" . consult-buffer) ;; orig. switch-to-buffer ("M-y" . consult-yank-pop) ;; orig. yank-pop ("C-s" . consult-line) ;; orig. isearch )) @@ -89,6 +95,3 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) - -;; Fire up the help buffer -(help-quick) |