summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorLLoyderino <adrijan.bjedov@gmail.com>2025-06-23 13:45:43 +0200
committerLLoyderino <adrijan.bjedov@gmail.com>2025-06-23 13:45:43 +0200
commit38d62dc6115887681aa23ee1d3d7bd6b6ee34f3e (patch)
treef7dbaaa324f71d20892d3bf67a40035464fbe632 /init.el
parent47a2f7ad09da21e54c2a718402f840a3dc8f3f36 (diff)
Better project management
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")