Merge branch 'master' of gitlab.com:marcus-kammer/emacs.d
This commit is contained in:
commit
b2b9cc64c9
1 changed files with 16 additions and 2 deletions
18
init.el
18
init.el
|
@ -45,14 +45,14 @@ There are two things you can do about this warning:
|
||||||
(quote
|
(quote
|
||||||
((fullscreen . maximized)
|
((fullscreen . maximized)
|
||||||
(width . 86)
|
(width . 86)
|
||||||
(height . 50)
|
(height . 42)
|
||||||
(font . "Iosevka Term-12.0")
|
(font . "Iosevka Term-12.0")
|
||||||
(vertical-scroll-bars)
|
(vertical-scroll-bars)
|
||||||
(alpha . 100))))
|
(alpha . 100))))
|
||||||
'(delete-selection-mode t)
|
'(delete-selection-mode t)
|
||||||
'(diary-file "~/Documents/Diary/diary")
|
'(diary-file "~/Documents/Diary/diary")
|
||||||
'(display-battery-mode nil)
|
'(display-battery-mode nil)
|
||||||
'(display-line-numbers (quote relative))
|
'(display-line-numbers nil)
|
||||||
'(display-time-mode t)
|
'(display-time-mode t)
|
||||||
'(display-time-world-list
|
'(display-time-world-list
|
||||||
(quote
|
(quote
|
||||||
|
@ -82,10 +82,15 @@ There are two things you can do about this warning:
|
||||||
'(newsticker-url-list-defaults
|
'(newsticker-url-list-defaults
|
||||||
(quote
|
(quote
|
||||||
(("Emacs Wiki" "https://www.emacswiki.org/emacs?action=rss" nil 3600)
|
(("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)
|
("openSuse News" "https://news.opensuse.org/feed" nil 3600)
|
||||||
("Phoronix" "https://www.phoronix.com/rss.php" nil 3600)
|
("Phoronix" "https://www.phoronix.com/rss.php" nil 3600)
|
||||||
("Ubuntu" "https://blog.ubuntu.com/feed" nil 3600)
|
("Ubuntu" "https://blog.ubuntu.com/feed" nil 3600)
|
||||||
("Netzpolitik" "https://logbuch-netzpolitik.de/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))))
|
("Python PEP" "https://www.python.org/dev/peps/peps.rss/" nil 3600))))
|
||||||
'(nord-comment-brightness 15)
|
'(nord-comment-brightness 15)
|
||||||
'(nord-region-highlight "snowstorm")
|
'(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
|
;; start a server, unless one is already running
|
||||||
(when (require 'server nil t) (unless (server-running-p) (server-start)))
|
(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:
|
;; Local Variables:
|
||||||
;; mode: emacs-lisp
|
;; mode: emacs-lisp
|
||||||
;; coding: utf-8-unix
|
;; coding: utf-8-unix
|
||||||
|
|
Loading…
Add table
Reference in a new issue