diff options
author | Adrian Kummerlaender | 2020-07-04 11:18:47 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2020-07-04 11:18:47 +0200 |
commit | 0ccea5e1cd792d91b385d0af4993eafc80c6804f (patch) | |
tree | ccc7664505bce9c715fb96518ecf295e1fb67cb9 /gui/conf | |
parent | 0fca218e8afe40d5151b8745d1e887f7a9575061 (diff) | |
download | nixos_home-0ccea5e1cd792d91b385d0af4993eafc80c6804f.tar nixos_home-0ccea5e1cd792d91b385d0af4993eafc80c6804f.tar.gz nixos_home-0ccea5e1cd792d91b385d0af4993eafc80c6804f.tar.bz2 nixos_home-0ccea5e1cd792d91b385d0af4993eafc80c6804f.tar.lz nixos_home-0ccea5e1cd792d91b385d0af4993eafc80c6804f.tar.xz nixos_home-0ccea5e1cd792d91b385d0af4993eafc80c6804f.tar.zst nixos_home-0ccea5e1cd792d91b385d0af4993eafc80c6804f.zip |
Unbind C-b in evil motion map
Shadows global C-b in evil buffers otherwise
Diffstat (limited to 'gui/conf')
-rw-r--r-- | gui/conf/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/conf/init.el b/gui/conf/init.el index 3131576..32b219d 100644 --- a/gui/conf/init.el +++ b/gui/conf/init.el @@ -271,12 +271,13 @@ :ensure t :config (global-set-key (kbd "M-x") 'helm-M-x) + (define-key evil-motion-state-map (kbd "C-b") nil) (global-set-key (kbd "C-b") 'helm-mini)) (use-package helm-swoop :ensure t :config - (global-set-key (kbd "C-s") 'helm-swoop) + (global-set-key (kbd "C-s") 'helm-swoop-without-pre-input) (global-set-key (kbd "C-S-s") 'helm-multi-swoop-current-mode)) (global-set-key (kbd "<M-tab>") 'next-buffer) |