diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-25 09:27:42 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-25 09:29:18 +0000 |
commit | 717731133fe9bcf99c28f13f8bebf29e62f5488e (patch) | |
tree | 19c5b02ceb97ebdac63e7cb0514cb18e5afd4706 /Emacs/.config | |
parent | 75eff9728d4c1320187cb2b50200b936575da3f9 (diff) | |
download | dotfiles-717731133fe9bcf99c28f13f8bebf29e62f5488e.tar.gz dotfiles-717731133fe9bcf99c28f13f8bebf29e62f5488e.tar.bz2 dotfiles-717731133fe9bcf99c28f13f8bebf29e62f5488e.zip |
(Emacs)~minor edits and configurations
Diffstat (limited to 'Emacs/.config')
-rw-r--r-- | Emacs/.config/emacs/config.org | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index e2cfefe..13f15f3 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -478,11 +478,13 @@ similarly to a fully fledged completion framework. (setq-default ido-enable-flex-matching t ido-enable-dot-prefix t ido-enable-regexp nil) + (with-eval-after-load "magit" + (setq magit-completing-read-function 'magit-ido-completing-read)) :config (ido-mode) (ido-everywhere)) #+end_src -**** Ido-completing-read+ +**** Ido ubiquitous Ido completing-read+ is a package that extends the ido package to work with more text based functions. #+begin_src emacs-lisp @@ -564,7 +566,9 @@ selection list). ivy-use-virtual-buffers nil ivy-virtual-abbreviate 'full ivy-on-del-error-function #'ignore - ivy-use-selectable-prompt t)) + ivy-use-selectable-prompt t) + (with-eval-after-load "amx" + (setq amx-backend 'ivy))) #+end_src **** Counsel etags :PROPERTIES: @@ -1573,8 +1577,7 @@ don't need to write everything myself. :general (leader "g" #'magit-status) :init - (setq magit-completing-read-function 'magit-ido-completing-read - vc-follow-symlinks t) + (setq vc-follow-symlinks t) (with-eval-after-load "autoinsert" (define-auto-insert '("COMMIT_EDITMSG" , "Commit") '(nil |