Emacs packages: org-sticky-header

The package org-sticky-header displays a sticky bar at the top, showing the current org heading.

Installlation (with use-package)

(use-package org-sticky-header
  :ensure t
  :hook (org-mode . org-sticky-header-mode))

Configuration

These are only the settings I use. For all options, check out M-x customize-group org-sticky-header.

;; Show full path in header
(setq org-sticky-header-full-path 'full)
;; Use > instead of / as separator
(setq org-sticky-header-outline-path-separator " > ")