diff options
| author | LLoyderino <adrijan.bjedov@gmail.com> | 2025-06-23 13:45:43 +0200 |
|---|---|---|
| committer | LLoyderino <adrijan.bjedov@gmail.com> | 2025-06-23 13:45:43 +0200 |
| commit | 38d62dc6115887681aa23ee1d3d7bd6b6ee34f3e (patch) | |
| tree | f7dbaaa324f71d20892d3bf67a40035464fbe632 | |
| parent | 47a2f7ad09da21e54c2a718402f840a3dc8f3f36 (diff) | |
Better project management
| -rw-r--r-- | init.el | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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") |
