File tree 3 files changed +48
-0
lines changed
3 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 52
52
- [[#vue][Vue]]
53
53
- [[#markdown][Markdown]]
54
54
- [[#yaml][YAML]]
55
+ - [[#just-file][Just File]]
55
56
- [[#项目工程][项目工程]]
56
57
- [[#org][Org]]
57
58
- [[#org-base][Org base]]
@@ -1361,6 +1362,18 @@ embark 是另一个比较神奇的工具。Emacs 基本的操作流程是先输
1361
1362
)
1362
1363
#+end_src
1363
1364
1365
+ ** Just File
1366
+ #+begin_src emacs-lisp
1367
+ (use-package just-mode
1368
+ :ensure t
1369
+ )
1370
+ (use-package justl
1371
+ :ensure t
1372
+ :bind
1373
+ (:map project-keymap
1374
+ ("r" . justl-exec-recipe-in-dir))
1375
+ )
1376
+ #+end_src
1364
1377
* 项目工程
1365
1378
1366
1379
#+begin_src emacs-lisp
@@ -1609,6 +1622,8 @@ Org-mode 相关的配置。
1609
1622
(setq org-habit-show-habits t)
1610
1623
(setq org-habit-following-days 2)
1611
1624
(setq org-habit-preceding-days 7)
1625
+ (setq org-habit-graph-column 60)
1626
+ (setq org-agenda-align-tags-to-column 60)
1612
1627
)
1613
1628
#+end_src
1614
1629
** Org-roam
@@ -1635,6 +1650,15 @@ Org-mode 相关的配置。
1635
1650
:hook
1636
1651
(org-mode . org-modern-mode)
1637
1652
(org-agenda-finalize . org-modern-agenda)
1653
+ :config
1654
+ (setq org-modern-todo-faces
1655
+ '(
1656
+ ("NEXT" :background "red"
1657
+ :foreground "white")
1658
+ ("SOMEDAY" :background "gray"
1659
+ :foreground "black")
1660
+ ))
1661
+
1638
1662
)
1639
1663
#+end_src
1640
1664
** Ox-hugo
Original file line number Diff line number Diff line change 920
920
:config
921
921
(setq-default format-all-formatters '((" YAML" (prettier)))))
922
922
923
+ (use-package just-mode
924
+ :ensure t
925
+ )
926
+ (use-package justl
927
+ :ensure t
928
+ :bind
929
+ (:map project-keymap
930
+ (" r" . justl-exec-recipe-in-dir))
931
+ )
932
+
923
933
(use-package magit
924
934
:ensure t
925
935
:bind
1151
1161
(setq org-habit-show-habits t )
1152
1162
(setq org-habit-following-days 2 )
1153
1163
(setq org-habit-preceding-days 7 )
1164
+ (setq org-habit-graph-column 60 )
1165
+ (setq org-agenda-align-tags-to-column 60 )
1154
1166
)
1155
1167
1156
1168
(use-package org-roam
1173
1185
:hook
1174
1186
(org-mode . org-modern-mode)
1175
1187
(org-agenda-finalize . org-modern-agenda)
1188
+ :config
1189
+ (setq org-modern-todo-faces
1190
+ '(
1191
+ (" NEXT" :background " red"
1192
+ :foreground " white" )
1193
+ (" SOMEDAY" :background " gray"
1194
+ :foreground " black" )
1195
+ ))
1196
+
1176
1197
)
1177
1198
1178
1199
(use-package ox-hugo
Original file line number Diff line number Diff line change
1
+ # 帮助
2
+ help :
3
+ echo " help in here"
You can’t perform that action at this time.
0 commit comments