nixos/home-manager/software/emacs/emacs.d/load_file.el

34 lines
879 B
EmacsLisp
Raw Normal View History

2022-08-18 21:31:41 +02:00
;; basic settings
(load-file "~/.emacs.d/variables.el")
(load-file (config-path "detect_os.el"))
(load-file (config-path "evil.el"))
(load-file (config-path "packages.el"))
(load-file (config-path "theme.el"))
(load-file (config-path "ui.el"))
2022-08-20 16:24:46 +02:00
;; keybindings
(load-file (config-path "hydra.el"))
2022-08-20 16:49:19 +02:00
;; note taking and writing
2022-08-18 21:31:41 +02:00
(load-file (config-path "deft.el"))
2022-08-20 16:49:19 +02:00
(load-file (config-path "latex.el"))
2022-08-20 16:47:00 +02:00
(load-file (config-path "markdown.el"))
2022-08-18 21:33:31 +02:00
(load-file (config-path "pdf_tools.el"))
2022-08-18 21:31:41 +02:00
;; org-mode
(load-file (config-path "org_insert.el"))
2022-08-20 16:45:44 +02:00
;; programming
2022-08-20 16:48:12 +02:00
(load-file (config-path "powershell.el"))
2022-08-20 16:45:44 +02:00
(load-file (config-path "webmode.el"))
2022-08-20 16:50:01 +02:00
(load-file (config-path "yaml.el"))
2022-08-20 16:45:44 +02:00
2022-08-20 16:36:31 +02:00
;; various
(load-file (config-path "counsel.el"))
2022-08-20 16:43:44 +02:00
(load-file (config-path "eyebrowse.el"))
(load-file (config-path "manuals.el"))
2022-08-20 16:43:28 +02:00
(load-file (config-path "yasnippet.el"))
2022-08-20 16:36:31 +02:00
2022-08-20 16:36:51 +02:00
2022-08-18 21:31:41 +02:00
(load-file (config-path "loader.el"))