diff options
author | ThanosApollo <[email protected]> | 2022-08-11 19:49:09 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-08-11 19:49:09 +0300 |
commit | a757b90dacb778e009e792cbbd0876f21e75245c (patch) | |
tree | 973dd660939e8e60468b90ca594bd3a00877c9c1 /.doom.d/config.el | |
parent | 22b3ad99032bb70c391784d67f649b1f30cd7f5d (diff) |
update doom
Diffstat (limited to '.doom.d/config.el')
-rw-r--r-- | .doom.d/config.el | 50 |
1 files changed, 19 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)) |