¶Catching Up With Emacs
- EmacsConf schedule has been posted: https://emacsconf.org/2021/schedule/
- EXWM has a new maintainer!
- Official emoji support in Emacs 28.1, Lars Ingebrigtsen
- New package: mct.el by Protesilaos Stavrou
- New package: elmo by Karthik Chikmagalur
- Article: Avy can do anything by Karthik Chikmagalur
- New package: vertico-posframe by tumashu
- New package: blamer.el - Inline git blame annotations by Artawower
- New package: pomm.el - Another package for Pomodoros by Pavel Korytov
- New package: capf-autosuggest - Automatically suggestion command history in eshell and comint buffers
¶Other Links
¶The configuration
(straight-use-package '(mct :repo "protesilaos/mct" :host gitlab)) (setq mct-remove-shadowed-file-names t) ; works when `file-name-shadow-mode' is enabled (setq mct-hide-completion-mode-line t) (setq mct-show-completion-line-numbers nil) (setq mct-apply-completion-stripes t) (setq mct-minimum-input 3) (setq mct-live-update-delay 0) (straight-use-package '(elmo :repo "karthink/elmo" :host github)) (straight-use-package '(vertico-posframe :repo "tumashu/vertico-posframe" :host github)) (use-package blamer :straight '(blamer :repo "Artawower/blamer.el" :host github) :custom (blamer-idle-time 0.3) (blamer-min-offset 70) :custom-face (blamer-face ((t :foreground "#7a88cf" :background nil :height 220 :italic t))) :config (global-blamer-mode 1)) (use-package pomm :straight (:host github :repo "SqrtMinusOne/pomm.el") :commands (pomm) :config (add-to-list 'mode-line-misc-info '(:eval pomm-current-mode-line-string)) (add-hook 'pomm-on-tick-hook 'pomm-update-mode-line-string) (add-hook 'pomm-on-tick-hook 'force-mode-line-update) (add-hook 'pomm-on-status-changed-hook 'pomm-update-mode-line-string) (add-hook 'pomm-on-status-changed-hook 'force-mode-line-update)) (straight-use-package 'capf-autosuggest)
Enjoyed this stream? Explore our hands-on courses for deeper, structured learning on Guile Scheme and more.
