From 1d3f3783de433e944d74a75a58784aac37400a7e Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 3 Jul 2026 17:54:00 -0700 Subject: Add new init file for macos --- _mbsetupuser/.emacs.d/init2.el | 50 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 _mbsetupuser/.emacs.d/init2.el (limited to '_mbsetupuser') diff --git a/_mbsetupuser/.emacs.d/init2.el b/_mbsetupuser/.emacs.d/init2.el new file mode 100644 index 0000000..6de6f0e --- /dev/null +++ b/_mbsetupuser/.emacs.d/init2.el @@ -0,0 +1,50 @@ +;;; init2.el --- Macos init file -*- lexical-binding: t; -*- + +;; Copyright (C) 2026 Tom Willemsen + +;; Author: Tom Willemsen +;; Keywords: local +;; Package-Requires: (oni-elfeed oni-eww oni-outline oni-yaml terraform-mode) +;; Version: 6 + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: + +;; Make a thing. + +;;; Code: + +(require 'package) + +(add-to-list 'package-archives '("oni" . "https://ryuslash.srht.site/emacs-config/packages/")) + +(use-package elfeed + :config + (require 'oni-elfeed) + (setq elfeed-feeds + '(("https://www.reddit.com/r/PHP/.rss" php) + ("https://phpreads.com/feed" php) + ("https://phpstan.org/rss.xml" php) + ("https://lobste.rs/t/php.rss" php) + ("https://mastodon.social/tags/PHP.rss" php) + ("https://wendelladriel.com/feed.rss" php)) + elfeed-curl-program-name "curl")) + +(use-package eww + :config + (require 'oni-eww)) + +(provide 'init2) +;;; init2.el ends here -- cgit v1.3-2-g0d8e