diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-17T11·46+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-17T11·46+0000 |
commit | 5727b6d24f2e462d53d2c44f50bd5b07276eb024 (patch) | |
tree | 7f18d2420a39718cbb0c223c74e3331735081d53 /tools/emacs/config/bindings.el | |
parent | 7965f3ba3a79633a0a87c57aa9e14ce11ec1d3a1 (diff) |
refactor(emacs.d): Move ivy configuration to use-package r/173
Diffstat (limited to 'tools/emacs/config/bindings.el')
-rw-r--r-- | tools/emacs/config/bindings.el | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/emacs/config/bindings.el b/tools/emacs/config/bindings.el index 9b98d5893f73..8f54d9cf554f 100644 --- a/tools/emacs/config/bindings.el +++ b/tools/emacs/config/bindings.el @@ -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) |