;; custom set stuff (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. ) (global-ede-mode t) (global-font-lock-mode t) ;; whomp helpers (require 'whomp-helpers) (setq custom-init "~/.emacs.d/custom-init.el") (unless (file-exists-p custom-init) (whomp/ensure-file-exists custom-init)) (load-file custom-init) (setq custom-file "~/.emacs.d/custom-config.el") (unless (file-exists-p custom-file) (whomp/ensure-file-exists custom-file)) (load custom-file) ;; whomp config (require 'whomp-configuration) ;; whomp defaults (require 'whomp-defaults) ;; theme configuration (require 'whomp-interface) ;; file browser configuration (require 'whomp-file-browser) ;; company configuration (require 'whomp-completion) ;; development configuration (require 'whomp-development) ;; AI configuration (temporarily removed pending consideration) ;; (require 'whomp-ai) ;; games configuration (require 'whomp-games) ;; org configuration (require 'whomp-orgmode) ;; dashboard (require 'whomp-dashboard) ;; now that everything is loaded, let's load all the user configurations (let ((user-config (whomp/list-files-with-extension "~/.emacs.d/whomp.d" "el"))) (dolist (config user-config) (load-file config))) (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. )