diff --git a/bundle/custom.el b/bundle/custom.el index 4adfd49c..f68fd10d 100644 --- a/bundle/custom.el +++ b/bundle/custom.el @@ -58,7 +58,8 @@ ("Python PEP" "https://www.python.org/dev/peps/peps.rss/" nil 3600 nil) ("Omegacube" "https://www.omegacube.com/feed/" nil 3600 nil) ("logisticsbureau" "https://www.logisticsbureau.com/feed/" nil 3600 nil) - ("nixcraft" "https://www.cyberciti.biz/atom/atom.xml" nil nil nil)))) + ("nixcraft" "https://www.cyberciti.biz/atom/atom.xml" nil nil nil) + ("Gitlab weblog" "https://about.gitlab.com/atom.xml" nil nil nil)))) '(nord-comment-brightness 15) '(nord-region-highlight "snowstorm") '(nord-uniform-mode-lines t) diff --git a/bundle/display.el b/bundle/display.el index 86fd992c..3b4007e3 100644 --- a/bundle/display.el +++ b/bundle/display.el @@ -18,6 +18,7 @@ (add-to-list 'default-frame-alist '(fullscreen . maximized)) ; Maximize Window (add-to-list 'default-frame-alist '(font . "Iosevka Term-14")) + (when (eq system-type 'gnu/linux) (add-to-list 'default-frame-alist '(undecorated . t))) diff --git a/eww-bookmarks b/eww-bookmarks index 2aa01213..82186e2e 100644 --- a/eww-bookmarks +++ b/eww-bookmarks @@ -1,5 +1,6 @@ ;; Auto-generated file; don't edit -((:url "https://elpy.readthedocs.io/en/latest/index.html" :title "Elpy — Elpy 1.32.0 documentation" :time "Wed Feb 19 19:01:44 2020") +((:url "https://www.sciencedirect.com/" :title "ScienceDirect.com | Science, health and medical journals, full text articles and books." :time "Mon Feb 24 10:51:56 2020") + (:url "https://elpy.readthedocs.io/en/latest/index.html" :title "Elpy — Elpy 1.32.0 documentation" :time "Wed Feb 19 19:01:44 2020") (:url "https://github.com/dfeich/org-babel-examples" :title "GitHub - dfeich/org-babel-examples: Examples using emacs org mode babel inline source code with different backend languages" :time "Tue Feb 18 14:45:12 2020") (:url "https://github.com/skuro/plantuml-mode" :title "GitHub - skuro/plantuml-mode: A major mode for editing PlantUML sources in Emacs" :time "Tue Feb 18 14:44:15 2020") (:url "https://org-babel.readthedocs.io/en/latest/" :title "Org Babel reference card" :time "Mon Feb 17 20:38:25 2020") diff --git a/init.el b/init.el index 3da67576..465dcf9c 100755 --- a/init.el +++ b/init.el @@ -1,3 +1,6 @@ +(require 'server) +(unless (server-running-p) (server-start)) + ;; ==================== GLOBAL KEYS ==================== ;; (global-set-key (kbd "C-c l") 'org-store-link) (global-set-key (kbd "C-c a") 'org-agenda) @@ -10,10 +13,6 @@ (global-set-key (kbd "C-c n") 'newsticker-start) ;; (global-unset-key "\C-z") -;; start a server, unless one is already running -(require 'server) -(unless (server-running-p) (server-start)) - (require 'package) ;; Added by Package.el. This must come before configurations of ;; installed packages. Don't delete this line. If you don't want it,