[emacs] try out magit/forge
[~bandali/configs] / init.org
index 015659b..cea0f41 100644 (file)
--- a/init.org
+++ b/init.org
@@ -748,6 +748,9 @@ Some bindings for functions from built-in GNU Emacs packages:
  ("C-c e b" . eval-buffer)
  ("C-c e r" . eval-region)
 
+ ("C-c e i" . emacs-init-time)
+ ("C-c e u" . emacs-uptime)
+
  ("C-c F m" . make-frame-command)
  ("C-c F d" . delete-frame)
  ("C-c F D" . delete-other-frames)
@@ -1872,7 +1875,10 @@ Emacs package that displays available keybindings in popup
     "C-c C-e" "web/element"
     "C-c C-t" "web/tags")
 
-  (which-key-mode))
+  (which-key-mode)
+  :custom
+  (which-key-add-column-padding 5)
+  (which-key-max-description-length 32))
 #+end_src
 
 ** theme
@@ -2083,9 +2089,10 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
               (propertize (+eshell--current-git-branch)
                           'face 'font-lock-function-name-face)
               "\n"
-              (propertize "λ" 'face 'eshell-prompt-face)
+              ;; "λ"
+              ;; (propertize "λ" 'face 'eshell-prompt)
               ;; needed for the input text to not have prompt face
-              (propertize " " 'face 'default))))
+              (propertize "λ " 'face 'default))))
 
   (defun +eshell--current-git-branch ()
     (let ((branch (car (loop for match in (split-string (shell-command-to-string "git branch") "\n")
@@ -2170,6 +2177,14 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
                ("a" . mc/mark-all-like-this))))
 #+end_src
 
+** forge
+
+#+begin_src emacs-lisp
+(use-package forge
+  :after magit
+  :demand)
+#+end_src
+
 * Email
 :PROPERTIES:
 :CUSTOM_ID: email
@@ -2386,6 +2401,9 @@ Convenient footnotes in =message-mode=.
 ** ebdb
 
 #+begin_src emacs-lisp
+;; https://github.com/girzel/ebdb/issues/72
+(use-package csv-mode)
+
 (use-package ebdb
   :straight (:host github :repo "girzel/ebdb")
   :after gnus
@@ -2471,10 +2489,11 @@ Convenient footnotes in =message-mode=.
 
 #+begin_src emacs-lisp
 (use-package ox-hugo
-  :after ox)
+  :after ox
+  :demand)
 
 (use-feature ox-hugo-auto-export
-  :after ox-hugo)
+  :demand)
 #+end_src
 
 * Post initialization