summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el13
1 files changed, 13 insertions, 0 deletions
diff --git a/init.el b/init.el
index 097bb58..5a4241d 100644
--- a/init.el
+++ b/init.el
@@ -43,6 +43,8 @@
(setq calendar-week-start-day 1) ; Start calendar on Monday
+(which-key-mode) ; Enable which-key (didn't know this is built-in now!)
+
;; Catppuccin theme
(load (locate-user-emacs-file "theme.el"))
@@ -89,6 +91,17 @@
(use-package yasnippet-snippets) ; Third party snippets, could replace
; them with my own one day...
+;; Projects
+(use-package rg)
+
+(use-package projectile
+ :after rg
+ :init
+ (projectile-mode +1)
+ :bind (:map projectile-mode-map
+ ("s-p" . projectile-command-map)
+ ("C-c p" . projectile-command-map)))
+
;; LSP configuration with Eglot for minimalismâ„¢
(use-package eglot-booster
:vc (:url "https://github.com/jdtsmith/eglot-booster")