diff --git a/init.org b/init.org index 8c64bfa..3db3eb7 100644 --- a/init.org +++ b/init.org @@ -23,6 +23,10 @@ These are some packages which I might want to use in the future, or maybe not, b - https://github.com/rougier/svg-tag-mode create svg images to replace tokens based on regexes +look at org-bullets to make a package which turns =--= and =---= into \em and \en. + +** Links +https://emacs.stackexchange.com/questions/12383/how-to-unbind-a-key * Start ** Lexical Scoping @@ -371,6 +375,9 @@ Evil keybinds: (evil-define-key 'normal 'global (kbd "wk") 'evil-window-up) (evil-define-key 'normal 'global (kbd "wh") 'evil-window-left) (evil-define-key 'normal 'global (kbd "wl") 'evil-window-right) + ;; magit + (evil-define-key 'normal 'global (kbd "gs") 'magit-status) + ; (evil-define-key 'normal 'global (kbd "gd") 'magit-diff) #+end_src Close =config=. @@ -385,6 +392,14 @@ Close =config=. (global-evil-surround-mode 1)) #+end_src +#+begin_src emacs-lisp + (use-package evil-collection + :after evil + :defer t + :config + (evil-collection-init)) +#+end_src + ** undo-fu Also use undo-fu, which evil can use. #+begin_src emacs-lisp