blob: 74a1a1d5babf43307c43562eeb2c1d37ac07490f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
;; -*- lexical-binding: t; -*-
(require 'org)
(add-to-list 'load-path "/home/verdant/.emacs.d/lisp")
(setq user-emacs-directory (expand-file-name "~/.emacs.d"))
(add-to-list 'load-path user-emacs-directory)
(let ((org-file (expand-file-name "config.org" user-emacs-directory))
(el-file (expand-file-name "config.el" user-emacs-directory)))
(when (or (not (file-exists-p el-file))
(file-newer-than-file-p org-file el-file))
(org-babel-tangle-file org-file))
(load-file el-file))
;(require 'config)
(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.
'(elfeed-feeds
'("https://www.hxueh.net/feed/" "https://anotherdayu.com/feed/"
"https://wangyurui.com/feed.xmhttps://www.skyue.com/feed/"
"https://www.ruanyifeng.com/blog/atom.xml"
"https://www.geedea.pro/posts/index.xml"
"https://blog.bxaw.name/feed" "https://matrix67.com/blog/feed"
"https://blog.solazy.me/feed/"
"https://www.xianrenlife.com/feeds/posts/default"
"https://www.owenyoung.com/atom.xml" "https://zopiya.com/rss.xml"
"https://blog.lyunvy.top/atom.xml" "https://yinan.me/atom.xml"
"https://stephenleng.com/cn/feed" "https://1q43.blog/feed"
"https://blog.ursb.me/feed.xml" "http://weiwuhui.com/feed"
"https://blog.farmostwood.net/rss"
"https://hsu.cy/posts/feed.xml"
"https://developer.mozilla.org/en-US/blog/rss.xml"
"https://weekly.howie6879.com/rss/rss.xml"
"https://onlytl.com/feed.xml" "https://weekly.tw93.fun/rss.xml"
"https://blog.southfox.me/feed.xml" "https://hulatu.com/atom.xml"
"https://pathos.page/feed.xml" "https://fav0.com/feed.xml"
"https://immarcus.com/blog/rss.xml"
"https://study.tczhong.com/index.xml"
"https://rosipov.com/atom.xml" "https://emptystack.top/atom.xml"
"https://blog.verdant.ee/atom.xml"
"https://www.ximalaya.com/album/64689453.xml"))
'(package-selected-packages
'(ace-window beacon cask-package-toolset clang-format
color-theme-sanityinc-solarized company counsel
dashboard dired-rainbow diredfl djvu doom-modeline
doom-themes ef-themes elfeed elfeed-org
evil-collection evil-mu4e exwm flycheck gdscript-mode
htmlize hugoista ivy-posframe ivy-rich jabber leetcode
lsp-ui magit mastodon nano-modeline nov olivetti
org-bullets org-noter org-present org-tree-slide
ox-hugo ox-reveal pdf-tools perspective
simple-modeline sis vterm yasnippet)))
(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.
)
|