aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-03 17:54:00 -0700
committerGravatar Tom Willemse2026-08-26 23:04:25 -0700
commit1d3f3783de433e944d74a75a58784aac37400a7e (patch)
treebe4653ec11e494268b578bddb093a00c54283eb6
parent8617a4ce9f3f29ad7e3bb46219b6138656e2342d (diff)
downloadnew-dotfiles-1d3f3783de433e944d74a75a58784aac37400a7e.tar.gz
new-dotfiles-1d3f3783de433e944d74a75a58784aac37400a7e.zip
Add new init file for macos
-rw-r--r--_mbsetupuser/.emacs.d/init2.el50
1 files changed, 50 insertions, 0 deletions
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 <tom@punt.com>
+;; 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 <https://www.gnu.org/licenses/>.
+
+;;; 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