Projectile: set indexing method to hybrid + ignore LSP server cache

This commit is contained in:
laurensmiers 2020-02-04 10:46:10 +01:00
parent 6ecbdb89dc
commit 10d45c2d8c

View file

@ -704,7 +704,8 @@ https://github.com/bbatsov/projectile
(use-package projectile
:ensure t
:config
(setq projectile-indexing-method 'alien)
(setq projectile-globally-ignored-directories (cons ".ccls-cache" projectile-globally-ignored-directories))
(setq projectile-indexing-method 'hybrid)
(projectile-global-mode)
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
)