2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Emacs 精進 21: 愉快な仲間たち

2
Last updated at Posted at 2025-12-24

この記事は Emacs 精進 Advent Calendar 2025 21 日目の投稿です。

背景

愉快な仲間たちを紹介するぜ!

a.gif

設定

出落ちですみません。光っているやつらを集めてみました。

nyan-mode

モードラインに nyancat が登場します:

(leaf nyan-mode
  :config
  (nyan-mode))

parrot

モードラインに party parrot が登場します:

(leaf parrot
  :custom
  ((nyan-animate-nyancat . t)
   ;; 永遠に回し続ける
   (parrot-num-rotations . nil))
  :config
  (parrot-mode))

beacon

スクロール時にカーソルが光ります:

(leaf becon
  :config
  (beacon-mode 1))

rainbow-mode

カラーコードを着色してくれます:

(leaf rainbow-mode
  :config
  (rainbow-mode 1))

自分で global minor mode を定義して使うと良いかもしれません。

rainbow-delimiters

() などを着色してくれます:

(leaf rainbow-delimiters
  :config
  (rainbow-delimiters-mode 1))

zone, zone-rainbow

テキストが七色に輝き始めるモードです:

(leaf zone-rainbow
  :after zone
  :config
  (setq zone-programs (vconcat [zone-rainbow] zone-programs)))

zone.png

gaming-mode

これは AI が作ってくれたのですが、どこかに忘れてしました……。

まとめ

Emacs の光り物を集めてみました。エディタが何色に輝くかによって、あるいはエディタの遊び心によって、そのエディタでどこまで行けるのか、潜在能力を測ることができるのかもしません。

それでは、次の記事でお会いしましょう!

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?