;; 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. '(desktop-save-mode t) '(mouse-autoselect-window t) '(mouse-drag-and-drop-region t) '(mouse-drag-and-drop-region-cross-program t) '(thwap-development '(magitmode projectilemode pythonmode elpymode yamlmode)) '(thwap-orgmode '(orgmode orgdownload orgroam orgpublish)) '(thwap-ui-theme nil) '(tool-bar-mode nil) '(visible-bell 1)) ;;(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. ;; '(default ((t (:family "Noto Sans Mono" :foundry "GOOG" :slant normal :weight regular :height 90 :width normal))))) ;; thwap helpers (require 'thwap-helpers) ;; thwap config (require 'thwap-configuration) ;; thwap defaults (require 'thwap-defaults) ;; theme configuration (require 'thwap-interface) ;; file browser configuration (require 'thwap-file-browser) ;; company configuration (require 'thwap-completion) ;; development configuration (require 'thwap-development) ;; org configuration (require 'thwap-orgmode) ;; dashboard (require 'thwap-dashboard) ;; now that everything is loaded, let's load all the user configurations (let ((user-config (thwap/list-files-with-extension "~/.emacs.d/thwap.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. )