From d99099a7f7e104c21e24a22b0fb582a4ca2d8473 Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Fri, 17 Dec 2021 02:33:21 +0100 Subject: [PATCH] add projectile --- init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.el b/init.el index fbd72d5..17669a4 100644 --- a/init.el +++ b/init.el @@ -350,6 +350,12 @@ (yas-global-mode t) (diminish 'yas-minor-mode) +;; projectile +(use-package projectile + :straight t + :bind (:map oxamap ("p" . projectile-command-map)) + :config (projectile-mode 1)) + ;; I use custom vars for local config, so let's put them to separate file, where ;; it's easier for git to ignore it (setq custom-file "~/.emacs.d/custom.el")