Update init

This commit is contained in:
Marcus Kammer 2019-09-18 13:13:20 +02:00
parent 895663ba80
commit f4dc4fe1bf

250
init.el
View file

@ -26,123 +26,6 @@ There are two things you can do about this warning:
(add-to-list 'package-archives (cons "gnu" (concat proto "://elpa.gnu.org/packages/"))))) (add-to-list 'package-archives (cons "gnu" (concat proto "://elpa.gnu.org/packages/")))))
(package-initialize) (package-initialize)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(auto-save-default nil)
'(backup-directory-alist (quote (("" . "~/.emacs.d/_backup_files"))))
'(blink-cursor-mode nil)
'(cal-html-directory "~/Documents/Diary")
'(calendar-date-style (quote iso))
'(calendar-intermonth-text
(quote
(propertize
(format "%2d"
(car
(calendar-iso-from-absolute
(calendar-absolute-from-gregorian
(list month day year)))))
(quote font-lock-face)
(quote font-lock-function-name-face))))
'(calendar-week-start-day 1)
'(column-number-mode t)
'(custom-enabled-themes (quote (nord)))
'(custom-safe-themes
(quote
("82358261c32ebedfee2ca0f87299f74008a2e5ba5c502bde7aaa15db20ee3731" "4515feff287a98863b7b7f762197a78a7c2bfb6ec93879e7284dff184419268c" default)))
'(default-frame-alist
(quote
((fullscreen . maximized)
(width . 86)
(height . 46)
(font . "Iosevka Term-13.0")
(alpha 96 . 80))))
'(delete-selection-mode t)
'(diary-file "~/Documents/Diary/diary")
'(display-battery-mode nil)
'(display-line-numbers nil)
'(display-time-mode t)
'(display-time-world-list
(quote
(("America/Los_Angeles" "Seattle")
("America/New_York" "New York")
("Europe/London" "London")
("Europe/Paris" "Paris")
("Asia/Calcutta" "Bangalore")
("Asia/Tokyo" "Tokyo"))))
'(fill-column 72)
'(font-lock-maximum-decoration t)
'(global-auto-revert-mode t)
'(global-font-lock-mode t)
'(global-hl-line-mode t)
'(icomplete-mode t)
'(indent-tabs-mode nil)
'(inferior-lisp-program "/usr/bin/clisp" t)
'(inhibit-startup-screen t)
'(line-number-mode t)
'(line-spacing 3)
'(linum-relative-backend (quote display-line-numbers-mode))
'(major-mode (quote text-mode))
'(make-backup-files nil)
'(network-security-level (quote medium))
'(newsticker-download-logos nil)
'(newsticker-frontend (quote newsticker-plainview))
'(newsticker-show-descriptions-of-new-items nil)
'(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)
("KDE" "https://dot.kde.org/rss.xml" nil 3600)
("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)
("Python PEP" "https://www.python.org/dev/peps/peps.rss/" nil 3600))))
'(nord-comment-brightness 15)
'(nord-region-highlight "snowstorm")
'(org-agenda-files (quote ("~/Documents/Journal")))
'(org-babel-load-languages
(quote
((js . t)
(emacs-lisp . t)
(python . t)
(sqlite . t)
(lisp . t)
(shell . t)
(css . t)
(calc . t))))
'(org-babel-shell-names
(quote
("sh" "bash" "csh" "ash" "dash" "ksh" "mksh" "posh")))
'(org-clock-persist t)
'(org-confirm-babel-evaluate nil)
'(org-default-notes-file "~/Documents/Journal/notes.org")
'(org-html-doctype "html5")
'(org-html-html5-fancy t)
'(org-log-done (quote time))
'(package-enable-at-startup t)
'(package-selected-packages
(quote
(url-http-ntlm syslog-mode org-pomodoro ox-html5slide ox-hugo ox-impress-js ox-ioslide ox-jira ox-json ox-pandoc nov vimish-fold w3 pickle feature-mode elpy elnode ein latex-extra latex-preview-pane docker docker-api docker-cli docker-compose-mode dockerfile-mode python-docstring pytest py-autopep8 pydoc pylint python-info auto-complete-rst sphinx-doc sphinx-frontend sphinx-mode ox-mediawiki ox-minutes ox-nikola cargo racket-mode rust-mode slime gherkin-mode gitlab gitlab-ci-mode org-jira powershell helm gitconfig-mode gitignore-mode ox-rst typescript-mode ## skewer-mode ob-http ob-ipython ob-restclient linum-relative markdown-mode nord-theme restclient request restclient-test yaml-mode magit)))
'(python-shell-interpreter "python3")
'(request-log-level (quote debug))
'(request-message-level (quote debug))
'(require-final-newline t)
'(restclient-log-request t)
'(restclient-same-buffer-response t)
'(size-indication-mode nil)
'(timeclock-file "~/Documents/Diary/timelog")
'(timeclock-mode-line-display t)
'(visible-bell 1))
(require 'markdown-mode) (require 'markdown-mode)
(require 'linum-relative) (require 'linum-relative)
@ -153,12 +36,7 @@ There are two things you can do about this warning:
(require 'json) (require 'json)
(require 'url) (require 'url)
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
;; (when (display-graphic-p) (add-to-list 'default-frame-alist '(font . "Roboto Mono-11.0"))) ;; (when (display-graphic-p) (add-to-list 'default-frame-alist '(font . "Roboto Mono-11.0")))
;; UTF-8 FTW ;; UTF-8 FTW
(prefer-coding-system 'utf-8) (prefer-coding-system 'utf-8)
@ -251,6 +129,132 @@ There are two things you can do about this warning:
(lambda (status) (switch-to-buffer-other-window (current-buffer)))) (lambda (status) (switch-to-buffer-other-window (current-buffer))))
) )
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(auto-save-default nil)
'(backup-directory-alist (quote (("" . "~/.emacs.d/_backup_files"))))
'(blink-cursor-mode nil)
'(cal-html-directory "~/Documents/Diary")
'(calendar-date-style (quote iso))
'(calendar-intermonth-text
(quote
(propertize
(format "%2d"
(car
(calendar-iso-from-absolute
(calendar-absolute-from-gregorian
(list month day year)))))
(quote font-lock-face)
(quote font-lock-function-name-face))))
'(calendar-week-start-day 1)
'(column-number-mode t)
'(custom-enabled-themes (quote (nord)))
'(custom-safe-themes
(quote
("82358261c32ebedfee2ca0f87299f74008a2e5ba5c502bde7aaa15db20ee3731" "4515feff287a98863b7b7f762197a78a7c2bfb6ec93879e7284dff184419268c" default)))
'(default-frame-alist
(quote
((fullscreen . maximized)
(width . 86)
(height . 46)
(font . "Iosevka Term-13.0")
(alpha 96 . 80))))
'(delete-selection-mode t)
'(diary-file "~/Documents/Diary/diary")
'(display-battery-mode nil)
'(display-line-numbers nil)
'(display-time-mode t)
'(display-time-world-list
(quote
(("America/Los_Angeles" "Seattle")
("America/New_York" "New York")
("Europe/London" "London")
("Europe/Paris" "Paris")
("Asia/Calcutta" "Bangalore")
("Asia/Tokyo" "Tokyo"))))
'(fill-column 72)
'(font-lock-maximum-decoration t)
'(global-auto-revert-mode t)
'(global-font-lock-mode t)
'(global-hl-line-mode t)
'(icomplete-mode t)
'(indent-tabs-mode nil)
'(inferior-lisp-program "/usr/bin/clisp" t)
'(inhibit-startup-screen t)
'(line-number-mode t)
'(line-spacing 3)
'(linum-relative-backend (quote display-line-numbers-mode))
'(major-mode (quote text-mode))
'(make-backup-files nil)
'(network-security-level (quote medium))
'(newsticker-download-logos nil)
'(newsticker-frontend (quote newsticker-plainview))
'(newsticker-show-descriptions-of-new-items nil)
'(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)
("KDE" "https://dot.kde.org/rss.xml" nil 3600)
("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)
("Python PEP" "https://www.python.org/dev/peps/peps.rss/" nil 3600))))
'(nord-comment-brightness 15)
'(nord-region-highlight "snowstorm")
'(nord-uniform-mode-lines t)
'(org-agenda-files (quote ("~/Documents/Journal")))
'(org-babel-load-languages
(quote
((js . t)
(emacs-lisp . t)
(python . t)
(sqlite . t)
(lisp . t)
(shell . t)
(css . t)
(calc . t))))
'(org-babel-shell-names
(quote
("sh" "bash" "csh" "ash" "dash" "ksh" "mksh" "posh")))
'(org-clock-persist t)
'(org-confirm-babel-evaluate nil)
'(org-default-notes-file "~/Documents/Journal/notes.org")
'(org-html-doctype "html5")
'(org-html-html5-fancy t)
'(org-log-done (quote time))
'(package-enable-at-startup t)
'(package-selected-packages
(quote
(url-http-ntlm syslog-mode org-pomodoro ox-html5slide ox-hugo ox-impress-js ox-ioslide ox-jira ox-json ox-pandoc nov vimish-fold w3 pickle feature-mode elpy elnode ein latex-extra latex-preview-pane docker docker-api docker-cli docker-compose-mode dockerfile-mode python-docstring pytest py-autopep8 pydoc pylint python-info auto-complete-rst sphinx-doc sphinx-frontend sphinx-mode ox-mediawiki ox-minutes ox-nikola cargo racket-mode rust-mode slime gherkin-mode gitlab gitlab-ci-mode org-jira powershell helm gitconfig-mode gitignore-mode ox-rst typescript-mode ## skewer-mode ob-http ob-ipython ob-restclient linum-relative markdown-mode nord-theme restclient request restclient-test yaml-mode magit)))
'(python-shell-interpreter "python3" t)
'(request-log-level (quote debug))
'(request-message-level (quote debug))
'(require-final-newline t)
'(restclient-log-request t)
'(restclient-same-buffer-response t)
'(size-indication-mode nil)
'(timeclock-file "~/Documents/Diary/timelog")
'(timeclock-mode-line-display t)
'(visible-bell 1))
;; Local Variables: ;; Local Variables:
;; mode: emacs-lisp ;; mode: emacs-lisp
;; coding: utf-8-unix ;; coding: utf-8-unix