You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
311 B

  1. (use-package projectile
  2. :ensure t
  3. :defer t
  4. :init
  5. (projectile-mode))
  6. :config
  7. ;;für virtualenvwrapper und python-projekte
  8. (setq projectile-switch-project-action 'venv-projectile-auto-workon)
  9. (provide 'plugin-projectile)