feat(base): Add magit-prime, org-tree-slide, pixel-scroll and eww config

- Install magit-prime package
- Add org-tree-slide with custom start/stop functions and keybindings
- Enable pixel-scroll-precision-mode
- Add basic eww configuration
This commit is contained in:
2026-06-10 03:56:07 +08:00
parent a524b13444
commit 2eae88527a
13 changed files with 95 additions and 15 deletions

View File

@@ -239,7 +239,15 @@
"C-c o b" 'denote-backlinks
"C-c o B" 'denote-org-backlinks-for-heading
"C-a" 'mwim-beginning
"C-e" 'mwim-end)
"C-e" 'mwim-end
"C-c o t" 'my-org-tree-slide-start)
;; org-tree-slide-mode
(general-def org-tree-slide-mode-map
"<left>" 'org-tree-slide-move-previous-tree
"<right>" 'org-tree-slide-move-next-tree
"C-c o t" 'my-org-tree-slide-stop
"ESC" 'my-org-tree-slide-stop)
;; hs-hide-mode
(general-def hs-minor-mode-map
@@ -286,6 +294,11 @@
"p" 'previous-line
"P" 'discomfort-poweroff)
;; eww
(general-def eww-mode-map
"M-n" 'forward-paragraph
"M-p" 'backward-paragraph)
;; global map with C-c prefix
(general-def
:prefix "C-c"