diff options
author | Franck Cuny <franck@fcuny.net> | 2024-04-06 11:27:45 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-04-06 11:27:45 -0700 |
commit | 482bfbde89d6ee1f5479bd22be200fd9cffb7d0d (patch) | |
tree | cc777be9164bb583e3e1ae9e6872d22395d1b0f7 | |
parent | a org file is definitely not the way for me (diff) | |
download | emacs.d-482bfbde89d6ee1f5479bd22be200fd9cffb7d0d.tar.gz |
add breadcrumb
-rw-r--r-- | config/init-ui.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/init-ui.el b/config/init-ui.el index 04ab67f..2bc37b4 100644 --- a/config/init-ui.el +++ b/config/init-ui.el @@ -49,5 +49,12 @@ ;; cursor is a horizontal bar (setq cursor-type 'box) +;; breadcrumb +;; https://github.com/joaotavora/breadcrumb +(use-package breadcrumb + :ensure t + :init + (breadcrumb-mode 1)) + (provide 'init-ui) ;;; init-ui.el ends here |