My Config
My personal Emacs Config, 2021-07-05T11:00:00+02:00General Config
(message "Loading general settings...")
(load (concat user-emacs-directory "general.el"))
(message "General settings successfully loaded.")
Major Modes
(message "Loading major-mode settings...")
(load (concat user-emacs-directory "major.el"))
(message "ajor-mode settings successfully loaded.")
Minor Modes
(message "Loading minor-mode settings...")
(load (concat user-emacs-directory "minor.el"))
(message "Minor-mode settings successfully loaded.")
Applications
(message "Loading application settings...")
(load (concat user-emacs-directory "applications.el"))
(message "Application settings successfully loaded.")
Load Theme
https://stackoverflow.com/questions/24222362/emacs-configuration-load-theme-only-partially-loads
(setq ef-themes-headings
'((0 extrabold 2.5)
(1 bold 2.0)
(2 bold 1.75)
(3 bold 1.5)
(4 bold 1.25)
(5 bold 1.17)
(6 bold 1.1)
(7 bold)
(8 bold)))
(if (daemonp)
(add-hook 'after-make-frame-functions
(lambda (frame)
(select-frame frame)
(load-theme 'ef-dark t)))
(load-theme 'ef-dark t))
Lade Server
(server-start)
(find-file "~/org/ops.org")
(treemacs-find-file)