;; Time-stamp: <2020-01-26 16:41:24 (tslil@bison)> (use-package projectile :ensure t :bind (("C-c p" . projectile-switch-project) ("C-c f" . projectile-find-file-dwim)) :config (projectile-mode 1) (defadvice projectile-project-root (around ignore-remote first activate) (unless (file-remote-p default-directory) ad-do-it)) (setq projectile-completion-system 'ivy projectile-mode-line-prefix "" ;; projectile-mode-line-function '(lambda () ;; (format " ¶[%s]" ;; (projectile-project-name))) project-mode-line-function '(lambda () " ¶") )) (use-package magit :ensure t :bind (("C-x g" . magit-status)))