diff options
author | mms <michal@sapka.me> | 2024-01-19 15:22:13 +0100 |
---|---|---|
committer | mms <michal@sapka.me> | 2024-01-19 15:22:13 +0100 |
commit | 9ab57ee255a03b86ed7303aa94959e3b104e1719 (patch) | |
tree | 926293dc6d9460f1eab12231573b71abc8d5ac4e /init.el |
feat: extract into dedicated repo
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -0,0 +1,32 @@ +(org-babel-load-file "~/.emacs.d/mms-configuration.org") +(org-babel-load-file "~/.emacs.d/mms-keyboard.org") +(org-babel-load-file "~/.emacs.d/mms-gui.org") + +(org-babel-load-file "~/.emacs.d/config.org") + + +(org-babel-load-file "~/.emacs.d/mms-prog.org") +(org-babel-load-file "~/.emacs.d/mms-prog-ruby.org") + +(org-babel-load-file "~/.emacs.d/mms-ox.org") +(org-babel-load-file "~/.emacs.d/mms-ox-sprints.org") +(org-babel-load-file "~/.emacs.d/mms-ox-publish.org") + +(org-babel-load-file "~/.emacs.d/mms-misc.org") +(org-babel-load-file "~/.emacs.d/mms-misc-rss.org") + +(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. + '(auth-source-save-behavior nil) + '(mml-secure-openpgp-sign-with-sender t) + '(safe-local-variable-values '((org-num-skip-tags "UNNUMBERED")))) +(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. + ) +(put 'narrow-to-region 'disabled nil) |