Merge branch 'master' of gitlab.com:marcus-kammer/emacs.d

This commit is contained in:
Marcus Kammer 2019-09-11 21:09:47 +02:00
commit b2b9cc64c9

18
init.el
View file

@ -45,14 +45,14 @@ There are two things you can do about this warning:
(quote
((fullscreen . maximized)
(width . 86)
(height . 50)
(height . 42)
(font . "Iosevka Term-12.0")
(vertical-scroll-bars)
(alpha . 100))))
'(delete-selection-mode t)
'(diary-file "~/Documents/Diary/diary")
'(display-battery-mode nil)
'(display-line-numbers (quote relative))
'(display-line-numbers nil)
'(display-time-mode t)
'(display-time-world-list
(quote
@ -82,10 +82,15 @@ There are two things you can do about this warning:
'(newsticker-url-list-defaults
(quote
(("Emacs Wiki" "https://www.emacswiki.org/emacs?action=rss" nil 3600)
("Sachachua" "https://sachachua.com/blog/feed/" nil 3600)
("openSuse News" "https://news.opensuse.org/feed" nil 3600)
("Phoronix" "https://www.phoronix.com/rss.php" nil 3600)
("Ubuntu" "https://blog.ubuntu.com/feed" nil 3600)
("Netzpolitik" "https://logbuch-netzpolitik.de/feed" nil 3600)
("PBP" "https://pbpython.com/feeds/all.atom.xml" nil 3600)
("Planet Python" "https://planetpython.org/rss20.xml" nil 3600)
("lucumr" "http://lucumr.pocoo.org/feed.atom" nil 3600)
("doughellmann" "https://doughellmann.com/blog/feed/" nil 3600)
("Python PEP" "https://www.python.org/dev/peps/peps.rss/" nil 3600))))
'(nord-comment-brightness 15)
'(nord-region-highlight "snowstorm")
@ -212,6 +217,15 @@ There are two things you can do about this warning:
;; start a server, unless one is already running
(when (require 'server nil t) (unless (server-running-p) (server-start)))
(require 'url)
(defun webscrap-page-raw (url)
(interactive)
(let 'url-request-method "GET")
(url-retrieve url
(lambda (status) (switch-to-buffer-other-window (current-buffer))))
)
;; Local Variables:
;; mode: emacs-lisp
;; coding: utf-8-unix