Prepare hydra

master
Jacopo De Simoi 6 years ago
parent 0cd6f8baf5
commit 574d36d8b9
  1. 14
      global.org

@ -373,14 +373,15 @@
("<S-f14>" . just-activate-mark)))
#+END_SRC
** Global bindings
Remove some supremely annoying bindings; plus, force me to use
ace-window by removing the ~C-x o~ binding
Remove some bindings that I find supremely annoying.
Additionally, unbind the ~C-x o~ binding to force me using ~ace-window~
Finally, unbind the ~C-SPC~ to mark the point, as I am using LR-shift
Note that I will use ~C-SPC~ as a hydra below to deal with parenthesis
#+BEGIN_SRC emacs-lisp
(mapcar
(lambda (ch)
(global-unset-key (kbd ch)))
'("C-z" "C-x f" "<M-f4>" "C-M-u" "C-M-d" "C-x o"))
'("C-z" "C-x f" "<M-f4>" "C-M-u" "C-M-d" "C-x o" "C-SPC"))
#+END_SRC
Change {up,down}-list
@ -445,6 +446,11 @@
(show-paren-mode 1)
#+END_SRC
*** TODO find out if there are better options out there
** Load hydra
#+BEGIN_SRC emacs-lisp
(require 'hydra)
#+END_SRC
** Abbrevs
Set up abbrevs
#+BEGIN_SRC emacs-lisp

Loading…
Cancel
Save