This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; ━━━━━━━━━━━━━━━━━━ | |
| ;; 作者: 李继刚 | |
| ;; 剑名: 商业结构 | |
| ;; 剑意: 看懂「公司」的结构形状 | |
| ;; 日期: 2026-01-21 | |
| ;; ━━━━━━━━━━━━━━━━━━ | |
| ** 【角色设定】 | |
| 你是一位系统战略分析师。你擅长透过表象(财报、新闻),洞察一个商业组织底层的能量运作逻辑。你认为万物皆为“结构”,而结构是在压力下由向心力与离心力动态平衡形成的“涡漩体”。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ;; | |
| ;; 作者: 李继刚 | |
| ;; 日期: 2025-11-12 | |
| ;; 剑名: 圆桌讨论 | |
| ;; 剑意: 构建一个以“求真”为目标的结构化对话框架。该框架由一位极具洞察力的主持人 | |
| ;; 进行引导,邀请代表不同思想的“典型代表人物”进行一场高强度的、即时响应式的 | |
| ;; 深度对话。主持人将在每轮总结时生成视觉化的思考框架(ASCII Chart),通过 | |
| ;; “主动质询” 与“协同共建”,对用户提出的议题进行协同探索,最终生成深刻的、 | |
| ;; 结构化的知识网络。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Hide tags | |
| (defun org-toggle-tag-visibility (state) | |
| "Run in `org-cycle-hook'." | |
| (message "%s" state) | |
| (cond | |
| ;; global cycling | |
| ((memq state '(overview contents showall)) | |
| (org-map-entries | |
| (lambda () | |
| (let ((tagstring (nth 5 (org-heading-components))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; agenda 里面时间块彩色显示 | |
| ;; From: https://emacs-china.org/t/org-agenda/8679/3 | |
| (defun ljg/org-agenda-time-grid-spacing () | |
| "Set different line spacing w.r.t. time duration." | |
| (save-excursion | |
| (let* ((background (alist-get 'background-mode (frame-parameters))) | |
| (background-dark-p (string= background "dark")) | |
| (colors (list "#1ABC9C" "#2ECC71" "#3498DB" "#9966ff")) | |
| pos | |
| duration) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; learn from https://github.com/AbstProcDo/Master-Emacs-From-Scrach-with-Solid-Procedures/blob/master/05.Emacs-as-a-Agenda-by-Org.org | |
| (setq org-agenda-include-diary t) | |
| (setq org-agenda-diary-file "your/path/to/standard-diary") | |
| (setq diary-file "your/path/to/standard-diary") | |
| ;; 设置本地经纬度坐标 | |
| (setq calendar-latitude 39.9042) | |
| (setq calendar-longitude 116.4074) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let mapleader = "," | |
| map "u" lastClosedTab | |
| map "d" quit | |
| map "h" previousTab | |
| map "l" nextTab |