Merge branch 'master' of gitlab.com:marcus-kammer/emacs.d
This commit is contained in:
commit
d40faf32bc
1 changed files with 6 additions and 2 deletions
8
init.el
8
init.el
|
@ -1,5 +1,9 @@
|
|||
(setq small-font "Iosevka Term-11")
|
||||
(setq big-font "Iosevka Term-14")
|
||||
;; start a server, unless one is already running
|
||||
(when (require 'server nil t)
|
||||
(unless (server-running-p)
|
||||
(server-start)))
|
||||
|
||||
;; (add-to-list 'custom-theme-load-path (expand-file-name "~/.emacs.d/bundle/nord-theme/"))
|
||||
(add-to-list 'load-path (expand-file-name "~/.emacs.d/bundle"))
|
||||
|
@ -124,6 +128,7 @@ There are two things you can do about this warning:
|
|||
("Metaebene" "https://metaebene.me/feed/" nil 3600)
|
||||
("Stack Exchange" "https://emacs.stackexchange.com/feeds" nil 3600)
|
||||
("Stallman" "https://stallman.org/rss/rss.xml" nil 3600)
|
||||
("Planet Lisp" "http://planet.lisp.org/" nil 3600)
|
||||
("Python PEP" "https://www.python.org/dev/peps/peps.rss/" nil 3600))))
|
||||
'(nord-comment-brightness 15)
|
||||
'(nord-region-highlight "snowstorm")
|
||||
|
@ -263,8 +268,7 @@ There are two things you can do about this warning:
|
|||
;; slime
|
||||
(setq slime-contribs '(slime-fancy))
|
||||
|
||||
;; 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)
|
||||
|
|
Loading…
Add table
Reference in a new issue