;; Added by Package.el. This must come before configurations of ;; installed packages. Don't delete this line. If you don't want it, ;; just comment it out by adding a semicolon to the start of the line. ;; You may delete these explanatory comments. (package-initialize) (setq shell-file-name "/bin/bash") ;;test für python und jedi (setq debug-on-error t) ;; Debug-Meldung, wenn Fehler durch init.el auftritt (add-to-list 'load-path (concat user-emacs-directory "elisp/")) (require 'base) (require 'base-theme) (require 'base-backup) (require 'base-functions) (require 'base-global-keys) ;(require 'plugin-evil) ; vi-mode für emacs (require 'plugin-which-key) (require 'plugin-counsel) (require 'plugin-org) (require 'plugin-company-mode) (require 'plugin-flycheck) ; Syntaxcheck (require 'plugin-smartparens) (require 'plugin-yasnippet) (require 'plugin-neotree) (require 'plugin-projectile) (require 'plugin-magit) (require 'lang-python) (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(package-selected-packages (quote (company-jedi elpy yasnippet which-key use-package smartparens projectile org-journal neotree material-theme magit flycheck counsel company-statistics company-quickhelp company-dict)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. )