48 lines
1.4 KiB
EmacsLisp
48 lines
1.4 KiB
EmacsLisp
;; 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)
|
|
'(tool-bar-mode nil)
|
|
'(visible-bell 1))
|
|
|
|
(setq custom-file "~/.emacs.d/emacs-custom.el")
|
|
(load custom-file)
|
|
|
|
;; whomp helpers
|
|
(require 'whomp-helpers)
|
|
;; 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)
|
|
;; extended development configuration
|
|
(require 'whomp-dev-ext)
|
|
;; 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.
|
|
)
|