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.

43 lines
1.7 KiB

  1. ;; Added by Package.el. This must come before configurations of
  2. ;; installed packages. Don't delete this line. If you don't want it,
  3. ;; just comment it out by adding a semicolon to the start of the line.
  4. ;; You may delete these explanatory comments.
  5. (package-initialize)
  6. (setq shell-file-name "/bin/bash") ;;test für python und jedi
  7. (setq debug-on-error t) ;; Debug-Meldung, wenn Fehler durch init.el auftritt
  8. (add-to-list 'load-path (concat user-emacs-directory "elisp/"))
  9. (require 'base)
  10. (require 'base-theme)
  11. (require 'base-backup)
  12. (require 'base-functions)
  13. (require 'base-global-keys)
  14. ;(require 'plugin-evil) ; vi-mode für emacs
  15. (require 'plugin-which-key)
  16. (require 'plugin-counsel)
  17. (require 'plugin-org)
  18. (require 'plugin-company-mode)
  19. (require 'plugin-flycheck) ; Syntaxcheck
  20. (require 'plugin-smartparens)
  21. (require 'plugin-yasnippet)
  22. (require 'plugin-neotree)
  23. (require 'plugin-projectile)
  24. (require 'plugin-magit)
  25. (require 'lang-python)
  26. (custom-set-variables
  27. ;; custom-set-variables was added by Custom.
  28. ;; If you edit it by hand, you could mess it up, so be careful.
  29. ;; Your init file should contain only one such instance.
  30. ;; If there is more than one, they won't work right.
  31. '(package-selected-packages
  32. (quote
  33. (company-jedi elpy yasnippet which-key use-package smartparens projectile org-journal neotree material-theme magit flycheck counsel company-statistics company-quickhelp company-dict))))
  34. (custom-set-faces
  35. ;; custom-set-faces was added by Custom.
  36. ;; If you edit it by hand, you could mess it up, so be careful.
  37. ;; Your init file should contain only one such instance.
  38. ;; If there is more than one, they won't work right.
  39. )