diff options
author | Raul Benencia <rul@kalgan.cc> | 2022-05-19 09:54:10 -0700 |
---|---|---|
committer | Raul Benencia <rul@kalgan.cc> | 2022-05-19 09:55:00 -0700 |
commit | d816c9606585b05398f2cc57512e098d46b69f66 (patch) | |
tree | 7dc689f03ad7664a7aa777fd17b8b533a2e833f1 | |
parent | 2dbddc935d3cf710c4e41ebf7839111369a06d10 (diff) |
emacs: enable projectile global mode on startup
-rw-r--r-- | .emacs.local.d/modes/projectile.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.local.d/modes/projectile.el b/.emacs.local.d/modes/projectile.el index 776bb3a..ed95775 100644 --- a/.emacs.local.d/modes/projectile.el +++ b/.emacs.local.d/modes/projectile.el @@ -1,7 +1,8 @@ ;; Debian packages: elpa-projectile (use-package projectile + :hook + (after-init . projectile-global-mode) :config (setq projectile-completion-system 'ivy) - (setq projectile-project-search-path my-projectile-project-search-path) ) |