summaryrefslogtreecommitdiff
path: root/emacs/custom/my-navigation.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs/custom/my-navigation.el44
1 files changed, 0 insertions, 44 deletions
diff --git a/emacs/custom/my-navigation.el b/emacs/custom/my-navigation.el
index e9197b5..74cd293 100644
--- a/emacs/custom/my-navigation.el
+++ b/emacs/custom/my-navigation.el
@@ -69,50 +69,6 @@
(rg-align-line-column-separator "#")
(rg-align-position-content-separator "|"))
-(use-package counsel
- :diminish counsel-mode
- :ensure t
- :after ivy
- :init (counsel-mode 1)
- :bind
- (("M-x" . counsel-M-x)
- ("C-x C-f" . counsel-find-file)
- ("C-x C-r" . counsel-recentf)
- ("C-c i " . counsel-imenu)
- ("C-c f" . counsel-git)
- ("C-c /" . counsel-rg)
- ("C-c m" . counsel-mark-ring)
- ("C-c V" . counsel-describe-variable)
- ("C-c C-l" . counsel-find-library)
- ("C-c U" . counsel-unicode-char)
- ("C-x r l" . counsel-bookmark))
- :custom
- (counsel-find-file-ignore-regexp "\\.git\\|\\.DS_Store\\|\\.localized\\'")
- (counsel-find-file-at-point t))
-
-(use-package ivy
- :ensure t
- :diminish ivy-mode
- :init (ivy-mode 1)
- :custom
- (ivy-use-virtual-buffers t)
- (ivy-count-format "(%d/%d) ")
- (ivy-height 20)
- (ivy-use-selectable-prompt t)
- :bind (("C-x b" . ivy-switch-buffer)
- ("C-s" . swiper)))
-
-(use-package ivy-rich
- :ensure t
- :after (ivy)
- :config
- (ivy-rich-mode 1)
- :custom
- (ivy-extra-directories '("../" "./"))
- (ivy-virtual-abbreviate 'full)
- (ivy-rich-switch-buffer-align-virtual-buffer t)
- (ivy-rich-path-style 'abbrev))
-
(use-package which-key
:diminish which-key-mode
:ensure t