Update configs
This commit is contained in:
parent
1bc9b6c9c3
commit
78f80abdce
4 changed files with 8 additions and 6 deletions
|
@ -58,7 +58,8 @@
|
||||||
("Python PEP" "https://www.python.org/dev/peps/peps.rss/" nil 3600 nil)
|
("Python PEP" "https://www.python.org/dev/peps/peps.rss/" nil 3600 nil)
|
||||||
("Omegacube" "https://www.omegacube.com/feed/" nil 3600 nil)
|
("Omegacube" "https://www.omegacube.com/feed/" nil 3600 nil)
|
||||||
("logisticsbureau" "https://www.logisticsbureau.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-comment-brightness 15)
|
||||||
'(nord-region-highlight "snowstorm")
|
'(nord-region-highlight "snowstorm")
|
||||||
'(nord-uniform-mode-lines t)
|
'(nord-uniform-mode-lines t)
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
|
|
||||||
(add-to-list 'default-frame-alist '(fullscreen . maximized)) ; Maximize Window
|
(add-to-list 'default-frame-alist '(fullscreen . maximized)) ; Maximize Window
|
||||||
(add-to-list 'default-frame-alist '(font . "Iosevka Term-14"))
|
(add-to-list 'default-frame-alist '(font . "Iosevka Term-14"))
|
||||||
|
|
||||||
(when (eq system-type 'gnu/linux)
|
(when (eq system-type 'gnu/linux)
|
||||||
(add-to-list 'default-frame-alist '(undecorated . t)))
|
(add-to-list 'default-frame-alist '(undecorated . t)))
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
;; Auto-generated file; don't edit
|
;; 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/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://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")
|
(:url "https://org-babel.readthedocs.io/en/latest/" :title "Org Babel reference card" :time "Mon Feb 17 20:38:25 2020")
|
||||||
|
|
7
init.el
7
init.el
|
@ -1,3 +1,6 @@
|
||||||
|
(require 'server)
|
||||||
|
(unless (server-running-p) (server-start))
|
||||||
|
|
||||||
;; ==================== GLOBAL KEYS ==================== ;;
|
;; ==================== GLOBAL KEYS ==================== ;;
|
||||||
(global-set-key (kbd "C-c l") 'org-store-link)
|
(global-set-key (kbd "C-c l") 'org-store-link)
|
||||||
(global-set-key (kbd "C-c a") 'org-agenda)
|
(global-set-key (kbd "C-c a") 'org-agenda)
|
||||||
|
@ -10,10 +13,6 @@
|
||||||
(global-set-key (kbd "C-c n") 'newsticker-start)
|
(global-set-key (kbd "C-c n") 'newsticker-start)
|
||||||
;; (global-unset-key "\C-z")
|
;; (global-unset-key "\C-z")
|
||||||
|
|
||||||
;; start a server, unless one is already running
|
|
||||||
(require 'server)
|
|
||||||
(unless (server-running-p) (server-start))
|
|
||||||
|
|
||||||
(require 'package)
|
(require 'package)
|
||||||
;; Added by Package.el. This must come before configurations of
|
;; Added by Package.el. This must come before configurations of
|
||||||
;; installed packages. Don't delete this line. If you don't want it,
|
;; installed packages. Don't delete this line. If you don't want it,
|
||||||
|
|
Loading…
Add table
Reference in a new issue