1

Enable Ido support in more locations

This commit is contained in:
Jessie Hildebrandt 2019-10-01 02:28:55 -04:00
parent 418ddd58a5
commit 7f7ed215eb

26
init.el
View File

@ -659,7 +659,9 @@
;; Load Magit
(use-package magit
:bind
("C-c g" . magit-status))
("C-c g" . magit-status)
:custom
(magit-completing-read-function 'magit-ido-completing-read))
;; [TODO Listing]
;; Load Magit-Todos
@ -667,6 +669,28 @@
:hook
(magit-mode-hook))
;;====================
;; Crm-Custom (Additional Ido Compat.)
;;====================
;; Load Crm-Custom
(use-package crm-custom
:demand
t
:config
(crm-custom-mode 1))
;;====================
;; Ido-Completing-Read+ (Ido Everywhere)
;;====================
;; Load Ido-Completing-Read+
(use-package ido-completing-read+
:demand
t
:config
(ido-ubiquitous-mode t))
;;====================
;; Ido-Vertical-Mode (Vertical Completions)
;;====================