feat(projects): switch from helm-projectile to regular projectile commands

With vertico, orderless and marginalia, I feel the regular projectile
find-file and switch-project commands offer just as good if not better
completion than helm-projectile commands do. Hence the switch.
This commit is contained in:
2022-01-25 12:26:09 +00:00
parent d35ddecfbd
commit 0312a360b4
2 changed files with 4 additions and 1 deletions

View File

@@ -79,7 +79,6 @@
;; Project management
(require 'siren-editorconfig)
(require 'siren-helm-projectile)
(require 'siren-projectile)
(require 'siren-treemacs)

View File

@@ -15,6 +15,10 @@
("C-c C-b" . projectile-ibuffer)
("C-c b" . projectile-switch-to-buffer)
("C-x C-t" . projectile-find-file)
("C-x ;" . projectile-find-file)
("C-x C-;" . projectile-find-file)
("C-c ;" . projectile-switch-project)
("C-c C-;" . projectile-switch-project)
(:map projectile-mode-map
("C-c p" . projectile-command-map))