whompmacs/init.el

46 lines
1.5 KiB
EmacsLisp
Raw Normal View History

2024-07-05 05:48:54 +00:00
;; 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.
2024-07-08 06:04:09 +00:00
'(mouse-autoselect-window t)
'(mouse-drag-and-drop-region t)
'(mouse-drag-and-drop-region-cross-program t)
'(terraform-format-on-save t)
'(terraform-indent-level 2)
'(tool-bar-mode nil)
'(visible-bell 1)
'(xterm-mouse-mode t))
2024-07-05 05:48:54 +00:00
(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)
2024-07-05 05:48:54 +00:00
;; theme configuration
(require 'thwap-interface)
;; file browser configuration
(require 'thwap-file-browser)
2024-07-05 05:48:54 +00:00
;; company configuration
(require 'thwap-completion)
;; development configuration
(require 'thwap-development)
2024-07-05 05:48:54 +00:00
;; org configuration
(require 'thwap-orgmode)
;; dashboard
(require 'thwap-dashboard)
2024-07-10 08:55:23 +00:00
;; 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)))