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
49 lines
1.7 KiB
;;; init --- Summary
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(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-treemacs) ;nach projectile, da treemacs auch treemacs-projectile lädt
|
|
(require 'plugin-spaceline)
|
|
(require 'plugin-markdown)
|
|
(require 'plugin-magit)
|
|
(require 'lang-python)
|
|
(require 'lang-latex)
|
|
|
|
;;; init ends here
|
|
(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
|
|
(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))))
|
|
(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.
|
|
)
|