diff options
Diffstat (limited to '')
-rw-r--r-- | configs/rcs/emacs.d/init.el | 45 |
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 |