Use projectile to find files

This works in all folders even when they aren't a git repo.
This commit is contained in:
Andreas Zweili 2022-12-19 15:06:04 +01:00
parent e919f8208d
commit 8d4d7da856
2 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,6 @@
(global-set-key (kbd "C-c V") 'ivy-pop-view)
;; (global-set-key (kbd "C-s") 'swiper-isearch)
(evil-define-key 'normal 'global "/" 'swiper-isearch)
(global-set-key (kbd "C-c g") 'counsel-git)
(global-set-key (kbd "C-c j") 'counsel-git-grep)
(global-set-key (kbd "C-c k") 'counsel-ag)
(define-key ivy-minibuffer-map (kbd "S-SPC") (lambda () (interactive) (insert " ")))

View File

@ -7,5 +7,6 @@
"~/git_repos/work/")
projectile-completion-system 'ivy
projectile-switch-project-action #'projectile-dired)
(global-set-key (kbd "C-c g") 'projectile-find-file)
:bind (:map projectile-mode-map
("M-p" . projectile-command-map)))