refactor(emacs.d): Move ivy configuration to use-package

This commit is contained in:
Vincent Ambo 2019-12-17 11:46:41 +00:00
parent 7965f3ba3a
commit 5727b6d24f
3 changed files with 31 additions and 21 deletions

View file

@ -5,9 +5,6 @@
;; What does <tab> do? Well, it depends ...
(define-key prog-mode-map (kbd "<tab>") #'company-indent-or-complete-common)
;; Counsel stuff:
(global-set-key (kbd "C-c r g") 'counsel-rg)
;; imenu instead of insert-file
(global-set-key (kbd "C-x i") 'imenu)
@ -40,7 +37,4 @@
;; Open a file in project:
(global-set-key (kbd "C-c f") 'project-find-file)
;; Use swiper instead of isearch
(global-set-key "\C-s" 'swiper)
(provide 'bindings)