Move global keybindings to correct section
This commit is contained in:
parent
3de2979151
commit
d01ad3371d
1 changed files with 24 additions and 26 deletions
|
@ -213,6 +213,30 @@ Computing Environment".
|
||||||
(global-set-key (kbd "C-M-SPC") 'er/expand-region)
|
(global-set-key (kbd "C-M-SPC") 'er/expand-region)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
Using multiple cursors can be really handy when you have the same
|
||||||
|
edits to make on multiple levels.
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(global-set-key (kbd "C-+") 'mc/mark-next-like-this)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
*** Hydra
|
||||||
|
|
||||||
|
Hydra is an interesting way of managing keybindings, I want to
|
||||||
|
experiment.
|
||||||
|
|
||||||
|
Add a hydra for org.
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(global-set-key (kbd "C-c o") 'oni-hydra-org/body)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
Add a hydra for magit.
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(global-set-key (kbd "C-c m") 'oni-hydra-magit/body)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
* Typographic style
|
* Typographic style
|
||||||
|
|
||||||
Emacs being a text editor has options on how to handle your text.
|
Emacs being a text editor has options on how to handle your text.
|
||||||
|
@ -766,23 +790,6 @@ Computing Environment".
|
||||||
(global-diff-hl-mode)
|
(global-diff-hl-mode)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Hydra
|
|
||||||
|
|
||||||
Hydra is an interesting way of managing keybindings, I want to
|
|
||||||
experiment.
|
|
||||||
|
|
||||||
Add a hydra for org.
|
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(global-set-key (kbd "C-c o") 'oni-hydra-org/body)
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
Add a hydra for magit.
|
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(global-set-key (kbd "C-c m") 'oni-hydra-magit/body)
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
** Isearch
|
** Isearch
|
||||||
|
|
||||||
Replace the Isearch mode line lighter with a magnifying glass icon.
|
Replace the Isearch mode line lighter with a magnifying glass icon.
|
||||||
|
@ -856,15 +863,6 @@ Computing Environment".
|
||||||
'face '(:family "Font Awesome" :height 0.75))))
|
'face '(:family "Font Awesome" :height 0.75))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Multiple cursor
|
|
||||||
|
|
||||||
Using multiple cursors can be really handy when you have the same
|
|
||||||
edits to make on multiple levels.
|
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(global-set-key (kbd "C-+") 'mc/mark-next-like-this)
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
** Slime
|
** Slime
|
||||||
|
|
||||||
Slime is crucial for developing Common Lisp programs. Set the
|
Slime is crucial for developing Common Lisp programs. Set the
|
||||||
|
|
Loading…
Reference in a new issue