From bd1babdfbdb4fb9a7fb3ba9111768b9b8875f925 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 30 Aug 2024 07:47:58 -0700 Subject: add breadcrumb again --- config/init-window.el | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 config/init-window.el (limited to 'config') diff --git a/config/init-window.el b/config/init-window.el new file mode 100644 index 0000000..85aab8b --- /dev/null +++ b/config/init-window.el @@ -0,0 +1,23 @@ +;;; init-window.el --- configure windows -*- lexical-binding: t -*- +;; Author: Franck Cuny + +;;; Commentary: + +;; commentary + +;;; Code: + +;;; Header line context of symbol/heading (breadcrumb.el) +(use-package breadcrumb + :ensure t + :config + (setq breadcrumb-project-max-length 0.5) + (setq breadcrumb-project-crumb-separator "/") + (setq breadcrumb-imenu-max-length 1.0) + (setq breadcrumb-imenu-crumb-separator " > ") + :init + (breadcrumb-mode 1)) + +(provide 'init-window) + +;;; init-window.el ends here -- cgit 1.4.1