aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-07-29 22:16:55 -0700
committerJakob Odersky <jakob@odersky.com>2017-07-29 22:16:55 -0700
commita17323a3d1a83c59260c0b74306c524486bf7b3c (patch)
tree2848118aef9e31ec9a6cbdff4f7c82cfc837180a
parentabf3f7308f4a7a7dbc3d57f49acad81cee82e2e9 (diff)
downloaddotfiles-a17323a3d1a83c59260c0b74306c524486bf7b3c.tar.gz
dotfiles-a17323a3d1a83c59260c0b74306c524486bf7b3c.tar.bz2
dotfiles-a17323a3d1a83c59260c0b74306c524486bf7b3c.zip
Remove ivy and use ido
-rw-r--r--home/.emacs.d/init.el25
1 files changed, 7 insertions, 18 deletions
diff --git a/home/.emacs.d/init.el b/home/.emacs.d/init.el
index 2c8df49..d55ba61 100644
--- a/home/.emacs.d/init.el
+++ b/home/.emacs.d/init.el
@@ -44,6 +44,12 @@
;; don't send emacs to background
(global-unset-key (kbd "C-z"))
+(setq browse-url-browser-function 'browse-url-chrome)
+
+(setq ido-enable-flex-matching t
+ ido-everywhere t)
+(ido-mode 1)
+
;;(setq initial-buffer-choice "~/readme.org")
(defun show-file-name ()
@@ -71,20 +77,6 @@
;;; Specialized packages
-(use-package counsel)
-(use-package swiper)
-(use-package ivy
- :diminish ivy-mode
- :init
- (ivy-mode 1)
- :bind (("C-s" . swiper)
- ("M-x" . counsel-M-x)
- ("C-x C-f" . counsel-find-file)
- ("C-c C-r" . ivy-resume))
- :config
- (setq ivy-use-virtual-buffers t)
- (setq ivy-count-format "(%d/%d) "))
-
(use-package goto-chg
:commands goto-last-change
:bind (("C-." . goto-last-change)
@@ -98,14 +90,11 @@
:init
(setq projectile-use-git-grep t)
:config
- (setq projectile-completion-system 'ivy)
(projectile-global-mode t)
:diminish projectile-mode)
(use-package magit
- :bind ("C-x g" . magit-status)
- :config
- (setq magit-completing-read-function 'ivy-completing-read))
+ :bind ("C-x g" . magit-status))
(use-package zoom-frm
:bind (("C-+" . zoom-all-frames-in)