diff --git a/modules/editor.org b/modules/editor.org index b0ed129..b527cb2 100644 --- a/modules/editor.org +++ b/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 diff --git a/modules/interface.org b/modules/interface.org index 2c86d95..388b4a0 100644 --- a/modules/interface.org +++ b/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=