;;; config--pkg-org-ol-tree.el --- Generated package (no.63) from my config -*- lexical-binding: t; -*- ;; ;; Copyright (C) 2024 TEC ;; ;; Author: TEC <https://code.tecosaur.net/tec> ;; Maintainer: TEC <contact@tecosaur.net> ;; Created: June 26, 2024 ;; Modified: June 26, 2024 ;; Version: 2024.06.26 ;; Homepage: https://code.tecosaur.net/tec/emacs-config ;; Package-Requires: ((emacs "29.1")) ;; ;; This file is not part of GNU Emacs. ;; ;;; Commentary: ;; ;; Generated package (no.63) from my config. ;; ;; During generation, dependency on other aspects of my configuration and ;; packages is inferred via (regexp-based) static analysis. While this seems ;; to do a good job, this method is imperfect. This code likely depends on ;; utilities provided by Doom, and if you try to run it in isolation you may ;; discover the code makes more assumptions. ;; ;; That said, I've found pretty good results so far. ;; ;; Package statement: ;; (package! org-ol-tree :recipe (:host github :repo "Townk/org-ol-tree") ;; :pin "207c748aa5fea8626be619e8c55bdb1c16118c25") ;; ;;; Code: (use-package! org-ol-tree :commands org-ol-tree :config (setq org-ol-tree-ui-icon-set (if (and (display-graphic-p) (fboundp 'all-the-icons-material)) 'all-the-icons 'unicode)) (org-ol-tree-ui--update-icon-set)) (map! :map org-mode-map :after org :localleader :desc "Outline" "O" #'org-ol-tree) (provide 'config--pkg-org-ol-tree) ;;; config--pkg-org-ol-tree.el ends here