summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@twitter.com>2018-10-18 14:33:57 -0700
committerFranck Cuny <fcuny@twitter.com>2018-10-18 14:33:57 -0700
commit3e43a8f6f7262b7c7ab998b09dcdd5302002d27c (patch)
tree3399f44fa0b1813487c6053bcf23f3549061cf55
parent[emacs] Simplify UI (diff)
downloademacs.d-3e43a8f6f7262b7c7ab998b09dcdd5302002d27c.tar.gz
[emacs] Remove ivy and switch to ido
-rw-r--r--configs/rcs/emacs.d/init.el45
1 files changed, 26 insertions, 19 deletions
diff --git a/configs/rcs/emacs.d/init.el b/configs/rcs/emacs.d/init.el
index e508d89..bcf1440 100644
--- a/configs/rcs/emacs.d/init.el
+++ b/configs/rcs/emacs.d/init.el
@@ -153,25 +153,32 @@
(setq auto-revert-verbose nil)
(global-auto-revert-mode t))
-(use-package swiper
- :ensure t
- :config (ivy-mode 1))
-
-(use-package counsel
- :ensure t
- :after (ivy swiper)
- :bind
- (("M-x" . counsel-M-x)
- ("C-s" . counsel-grep-or-swiper)
- ("C-x C-f" . counsel-find-file)
- ("C-x C-r" . counsel-recentf)
- ("C-c b" . counsel-bookmark)
- ("C-c s" . counsel-git-grep)
- ("C-c /" . counsel-ag)
- ("C-c C-x" . counsel-command-history)
- ("C-c y" . counsel-yank-pop))
- :custom
- (counsel-find-file-at-point t))
+;; (use-package swiper
+;; :ensure t
+;; :config (ivy-mode 1))
+
+;; (use-package counsel
+;; :ensure t
+;; :after (ivy swiper)
+;; :bind
+;; (("M-x" . counsel-M-x)
+;; ("C-s" . counsel-grep-or-swiper)
+;; ("C-x C-f" . counsel-find-file)
+;; ("C-x C-r" . counsel-recentf)
+;; ("C-c b" . counsel-bookmark)
+;; ("C-c s" . counsel-git-grep)
+;; ("C-c /" . counsel-ag)
+;; ("C-c C-x" . counsel-command-history)
+;; ("C-c y" . counsel-yank-pop))
+;; :custom
+;; (counsel-find-file-at-point t))
+
+(use-package ido
+ :init
+ (ido-mode t)
+ :config
+ (setq ido-enable-prefix nil
+ ido-create-new-buffer 'always))
(use-package hl-line
:config