Browse Source

Update modules

main
parent
commit
b4e4eb3b79
  1. 9
      modules/editor.org
  2. 4
      modules/interface.org

9
modules/editor.org

@ -270,11 +270,16 @@ Yet another hallmark feature of Emacs: *Magit*[fn:17] with the *darling* name, t
#'magit-display-buffer-same-window-except-diff-v1))
#+end_src
Open the *status* page for the current repository with =SPC g=.
Place keybindings for *magit*[fn:17] behind =SPC g=.
+ Clone with =c=
+ Status with =g=
#+begin_src emacs-lisp
(dotfiles/leader
"g" '(magit-status :which-key "Magit"))
"g" '(:ignore t :which-key "Magit")
"gc" '(magit-clone :which-key "Clone")
"gg" '(magit-status :which-key "Magit"))
#+end_src
** GitHub integration

4
modules/interface.org

@ -160,7 +160,9 @@ Gotta have those emojis, first class support for Emacs via the *Emacs-emojify*[f
#+begin_src emacs-lisp
(use-package emojify
:when (window-system)
:hook (after-init . global-emojify-mode))
:hook (after-init . global-emojify-mode)
:custom (emojify-emoji-styles '(github))
(emojify-display-style 'github))
#+end_src
+ Place *Emojify*[fn:13] bindings behind =SPC f=

Loading…
Cancel
Save