diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-02-27 00:49:08 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-02-27 00:49:08 +0100 |
commit | 0ac8ed06603696b8a2719f7f46151e22c0cc46d3 (patch) | |
tree | edee82bf74d1166d1843729eb5957ba96d472f15 | |
parent | Dotfiles: Emacs: Add orderless package (diff) | |
download | nixos-config-0ac8ed06603696b8a2719f7f46151e22c0cc46d3.tar.gz nixos-config-0ac8ed06603696b8a2719f7f46151e22c0cc46d3.tar.bz2 nixos-config-0ac8ed06603696b8a2719f7f46151e22c0cc46d3.zip |
Dotfiles: Emacs: Edit helm keybinds
-rw-r--r-- | dotfiles/.emacs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dotfiles/.emacs b/dotfiles/.emacs index a42c9ea..ca4bbc5 100644 --- a/dotfiles/.emacs +++ b/dotfiles/.emacs @@ -101,6 +101,7 @@ :config (direnv-mode)) +;; TODO: Use vertico (use-package helm :ensure t) @@ -122,8 +123,9 @@ (helm-projectile-on) :bind (:map evil-normal-state-map + ("C-S-f" . helm-occur) ("C-p" . helm-projectile-find-file) - ("C-S-f" . helm-projectile-ag))) + ("C-S-p" . helm-projectile-ag))) (use-package company :ensure t |