From 38d62dc6115887681aa23ee1d3d7bd6b6ee34f3e Mon Sep 17 00:00:00 2001 From: LLoyderino Date: Mon, 23 Jun 2025 13:45:43 +0200 Subject: Better project management --- init.el | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'init.el') 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") -- cgit v1.3.1