~switch from ctrl based chords to meta

I hit meta with my thumb whereas control is hit by the pinky. Emacs
pinky is a real issue, and I got little tremors of it recently (which
lead to me moving to leader-SPC based bindings). Any bindings to ctrl
should be replaced to meta based ones.
This commit is contained in:
2020-08-07 13:45:31 +01:00
parent e199f7467a
commit c1f2c967dd

View File

@@ -258,11 +258,11 @@ Also setup evil-collection for ivy.
:hook (after-init . ivy-mode)
:after evil-collection
:bind (:map ivy-minibuffer-map
("C-j" . ivy-next-line-or-history)
("C-k" . ivy-previous-line-or-history)
("M-j" . ivy-next-line-or-history)
("M-k" . ivy-previous-line-or-history)
:map ivy-switch-buffer-map
("C-j" . ivy-next-line-or-history)
("C-k" . ivy-previous-line-or-history))
("M-j" . ivy-next-line-or-history)
("M-k" . ivy-previous-line-or-history))
:general
(:keymaps 'ivy-minibuffer-map
"C-c C-e" #'ivy-occur)
@@ -527,8 +527,8 @@ In this case, just setup some evil binds for company
:hook (prog-mode . company-mode)
:bind (("C-SPC" . company-complete)
:map company-active-map
("C-j" . company-select-next)
("C-k" . company-select-previous)))
("M-j" . company-select-next)
("M-k" . company-select-previous)))
#+END_SRC
* Elfeed
Elfeed is the perfect RSS feed reader, integrated into Emacs perfectly.