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.

49 lines
1.7 KiB

  1. ;;; init --- Summary
  2. ;;; Commentary:
  3. ;;; Code:
  4. (package-initialize)
  5. (setq shell-file-name "/bin/bash") ;;test für python und jedi
  6. (setq debug-on-error t) ;; Debug-Meldung, wenn Fehler durch init.el auftritt
  7. (add-to-list 'load-path (concat user-emacs-directory "elisp/"))
  8. (require 'base)
  9. (require 'base-theme)
  10. (require 'base-backup)
  11. (require 'base-functions)
  12. (require 'base-global-keys)
  13. ;(require 'plugin-evil) ; vi-mode für emacs
  14. (require 'plugin-which-key)
  15. (require 'plugin-counsel)
  16. (require 'plugin-org)
  17. (require 'plugin-company-mode)
  18. (require 'plugin-flycheck) ; Syntaxcheck
  19. (require 'plugin-smartparens)
  20. (require 'plugin-yasnippet)
  21. ;(require 'plugin-neotree)
  22. (require 'plugin-projectile)
  23. (require 'plugin-treemacs) ;nach projectile, da treemacs auch treemacs-projectile lädt
  24. (require 'plugin-spaceline)
  25. (require 'plugin-markdown)
  26. (require 'plugin-magit)
  27. (require 'lang-python)
  28. (require 'lang-latex)
  29. ;;; init ends here
  30. (custom-set-variables
  31. ;; custom-set-variables was added by Custom.
  32. ;; If you edit it by hand, you could mess it up, so be careful.
  33. ;; Your init file should contain only one such instance.
  34. ;; If there is more than one, they won't work right.
  35. '(package-selected-packages
  36. (quote
  37. (pdf-tools yasnippet which-key use-package tablist smartparens projectile org-journal neotree material-theme magit flycheck counsel company-statistics company-quickhelp company-jedi company-dict auto-virtualenvwrapper))))
  38. (custom-set-faces
  39. ;; custom-set-faces was added by Custom.
  40. ;; If you edit it by hand, you could mess it up, so be careful.
  41. ;; Your init file should contain only one such instance.
  42. ;; If there is more than one, they won't work right.
  43. )