emacs-macos/init.el

20 lines
879 B
EmacsLisp
Raw Permalink Normal View History

2025-02-20 10:39:15 -07:00
(require 'package)
(setq package-enable-at-startup nil)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(global-tab-line-mode t)
(mapc #'org-babel-load-file (directory-files-recursively "~/.config/emacs/src/modules" "\\.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.
'(package-selected-packages nil)
'(package-vc-selected-packages
2025-02-26 18:18:30 -07:00
'((ultra-scroll :url "https://github.com/jdtsmith/ultra-scroll"))))
2025-02-20 10:39:15 -07: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.
)