diff options
-rw-r--r-- | .doom.d/config.el | 50 | ||||
-rw-r--r-- | .doom.d/custom.el | 20 | ||||
-rw-r--r-- | .doom.d/packages.el | 2 |
3 files changed, 41 insertions, 31 deletions
diff --git a/.doom.d/config.el b/.doom.d/config.el index 501cadf..bcb75bc 100644 --- a/.doom.d/config.el +++ b/.doom.d/config.el @@ -98,24 +98,6 @@ "h" 'dired-up-directory "l" 'dired-find-file)) -(custom-set-variables -'(custom-safe-themes - '("97db542a8a1731ef44b60bc97406c1eb7ed4528b0d7296997cbb53969df852d6" default)) - '(doc-view-continuous t) - '(org-agenda-files '("~/org/agenda.org")) - '(package-selected-packages - '(pdf-tools org-anki anki-connect quelpa-use-package exwm ##)) - '(warning-suppress-log-types '((erc) (erc))) - '(warning-suppress-types '((color-theme) (erc) (erc)))) -(custom-set-faces -'(default ((t (:height 100 :family "hack")))) - '(org-level-1 ((t (:inherit outline-1 :height 1.3 :family )))) - '(org-level-2 ((t (:inherit outline-2 :height 1.2 :family )))) - '(org-level-3 ((t (:inherit outline-2 :height 1.2 :family )))) - '(org-level-4 ((t (:inherit outline-2 :height 1.15)))) - '(org-level-5 ((t (:inherit outline-2 :height 1.0))))) - - (defvar my-linum-current-line-number 0) (setq linum-format 'my-linum-relative-line-numbers) @@ -132,30 +114,36 @@ ad-do-it)) (ad-activate 'linum-update) +;;Vterm +;;(require 'vterm) +;; (map! :leader +;; (:prefix-map ("o" "Open")) +;; :desc "Open vterm" "t" #'vterm) - -;; Elfeed +;;Elfeed (require 'elfeed) (map! :leader (:prefix-map ("e" . "Elfeed") - :desc "Open" "o" #'elfeed + :desc "Open elfeed" "o" #'elfeed :desc "Update feed" "u" #'elfeed-update-feed - :desc "Update all" "a" #'elfeed-update)) + :desc "Update all" "a" #'elfeed-update)) (use-package elfeed :config (setq elfeed-search-feed-face ":foreground #fff :weight bold" elfeed-feeds (quote - (("https://www.gamingonlinux.com/article_rss.php" gaming linux) + ( ("https://hackaday.com/blog/feed/" hackaday linux) ("https://opensource.com/feed" opensource linux) ("https://linux.softpedia.com/backend.xml" softpedia linux) - ("https://www.thelancet.com/rssfeed/ebiom_current.xml" medicine ebiom) - ("https://www.computerworld.com/index.rss" computerworld linux) - ("https://www.networkworld.com/category/linux/index.rss" networkworld linux) + ("https://www.thelancet.com/rssfeed/ebiom_current.xml" Lancet ebiom) + ("https://www.thelancet.com/rssfeed/lancet_current.xml" Lancet lancet) + ("https://www.thelancet.com/rssfeed/ebiom_online.xml" LancetOnline ebiom) + ("https://www.thelancet.com/rssfeed/lancet_online.xml" LancetOnline lancet) + ("https://www.thelancet.com/rssfeed/lanmic_online.xml" LancetOnline Microbiology) ("https://www.techrepublic.com/rssfeeds/topic/open-source/" techrepublic linux) - ("https://betanews.com/feed" betanews linux) - ("http://lxer.com/module/newswire/headlines.rss" lxer linux) - ("https://stallman.org/rss/rss.xml"RichardStallman))))) + ("https://bbs.archlinux.org/extern.php?action=feed&type=atom" archlinux linux)))) + + ) (use-package elfeed-goodies :init @@ -173,7 +161,7 @@ (kbd "J") 'elfeed-goodies/split-show-next (kbd "K") 'elfeed-goodies/split-show-prev) -;; Spotify +;;Spotify (require 'spotify) (map! :leader (:prefix-map ("S" . "Spotify") @@ -182,7 +170,7 @@ :desc "Stop" "s" #'spotify-pause :desc "Play" "P" #'spotify-play)) -;; ;; Neotree +;; Neotree ;; (map! :leader ;; (:prefix-map ("o" . "Open") ;; :desc "Neotree" "n" #'neotree)) diff --git a/.doom.d/custom.el b/.doom.d/custom.el new file mode 100644 index 0000000..0377237 --- /dev/null +++ b/.doom.d/custom.el @@ -0,0 +1,20 @@ +(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 + '(spotify vterm uwu-theme sketch-themes rg organic-green-theme one-themes nyx-theme moe-theme lab-themes jazz-theme helm-themes hackernews green-is-the-new-black-theme ewal-spacemacs-themes darktooth-theme ayu-theme arc-dark-theme ancient-one-dark-theme))) +(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. + '(default ((t (:height 100 :family "hack")))) + '(org-level-1 ((t (:inherit outline-1 :height 1.3 :family )))) + '(org-level-2 ((t (:inherit outline-2 :height 1.2 :family )))) + '(org-level-3 ((t (:inherit outline-2 :height 1.2 :family )))) + '(org-level-4 ((t (:inherit outline-2 :height 1.15)))) + '(org-level-5 ((t (:inherit outline-2 :height 1.0)))) + + ) diff --git a/.doom.d/packages.el b/.doom.d/packages.el index 839b83c..c39609f 100644 --- a/.doom.d/packages.el +++ b/.doom.d/packages.el @@ -48,3 +48,5 @@ ;(unpin! pinned-package another-pinned-package) ;; ...Or *all* packages (NOT RECOMMENDED; will likely break things) ;(unpin! t) + + |