1
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?

More than 3 years have passed since last update.

Emacsのorg-mode

1
Last updated at Posted at 2022-03-14

見た目の設定

Emacsを新しく入れたら,挙動が新しくなったのか.orgファイルをEmacsで開くと文章が展開された状態になっていた.
前までは全ては展開されず,見出しだけ展開されていたような気がする.

設定の仕方をググると下記サイトにデフォルトの展開設定だけではなく,
見出しのインデント方法の設定も書いてあったのでそのまま使う.

init.elに書く

;;; org-mode
(setq org-startup-indented t)    ;; 見出しをインデント
(setq org-indent-mode-turns-on-hiding-stars nil)  ;; 見出しをインデントした時にアスタリスクが減るのを防ぐ
(setq org-indent-indentation-per-level 4)  ;; インデントの幅を設定
(setq org-startup-folded 'content)  ;; 見出しの初期状態(見出しだけ表示)

自動でインデントしてくれるのはめちゃくちゃ便利.

2022/03/25 追記
speed-commands を有効にした

(setq org-use-speed-commands t)
1
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
1
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?