;;; init2.el --- Macos init file -*- lexical-binding: t; -*- ;; Copyright (C) 2026 Tom Willemsen ;; Author: Tom Willemsen ;; Keywords: local ;; Package-Requires: (oni-elfeed oni-outline terraform-mode) ;; Version: 10 ;; 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 oni-eww :after eww) (use-package oni-yasnippet :after yasnippet) (use-package oni-php :after php) (use-package oni-yaml :after (yaml yaml-ts-mode)) (provide 'init2) ;;; init2.el ends here