Faster emacs startup

This commit is contained in:
Charlotte Van Petegem 2021-09-20 18:14:49 +02:00
parent 213fa674c8
commit 23306e0379
No known key found for this signature in database
GPG key ID: 019E764B7184435A
7 changed files with 69 additions and 40 deletions

View file

@ -56,7 +56,6 @@
;; Git integration
(use-package magit
:demand t
:general
(lmap
"g" '(:ignore t :which-key "git")
@ -66,8 +65,8 @@
;; Project management
(use-package projectile
:after (ripgrep selectrum)
:demand t
:commands (projectile-project-root)
:custom (consult-project-root-function #'projectile-project-root "Use projectile to determine project roots.")
:diminish (projectile-mode)
:config (projectile-mode 1)
:general
@ -84,7 +83,9 @@
)
;; Ripgrep support (needed for `projectile-ripgrep')
(use-package ripgrep)
(use-package ripgrep
:after (projectile)
)
''
];
home-manager.users.charlotte = { ... }: base;