Update init file

This commit is contained in:
Marcus Kammer 2019-08-01 14:42:29 +02:00
parent e723ae9ffd
commit 0d786dff7f

15
init.el
View file

@ -71,11 +71,11 @@ 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)
("openSuse News" "https://news.opensuse.org/feed")
("Linuxjournal" "https://www.linuxjournal.com/node/feed") ("Linuxjournal" "https://www.linuxjournal.com/node/feed")
("Phoronix" "https://www.phoronix.com/rss.php") ("Phoronix" "https://www.phoronix.com/rss.php")
("Ubuntu" "https://blog.ubuntu.com/feed") ("Ubuntu" "https://blog.ubuntu.com/feed")
("Python PEP" "https://www.python.org/dev/peps/peps.rss/") ("Python PEP" "https://www.python.org/dev/peps/peps.rss/"))))
("openSuse News" "https://news.opensuse.org/feed"))))
'(org-agenda-files (quote ("~/Documents/Journal"))) '(org-agenda-files (quote ("~/Documents/Journal")))
'(org-babel-load-languages '(org-babel-load-languages
(quote (quote
@ -84,11 +84,12 @@ There are two things you can do about this warning:
(python . t) (python . t)
(sqlite . t) (sqlite . t)
(lisp . t)))) (lisp . t))))
'(org-clock-persist t)
'(org-default-notes-file "~/Documents/Journal/notes.org") '(org-default-notes-file "~/Documents/Journal/notes.org")
'(package-enable-at-startup t) '(package-enable-at-startup t)
'(package-selected-packages '(package-selected-packages
(quote (quote
(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))) (w3m 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)))
'(require-final-newline t) '(require-final-newline t)
'(size-indication-mode nil) '(size-indication-mode nil)
'(timeclock-file "~/Documents/Diary/timelog") '(timeclock-file "~/Documents/Diary/timelog")
@ -149,7 +150,7 @@ There are two things you can do about this warning:
(when (eq system-type 'windows-nt) (when (eq system-type 'windows-nt)
;; (setq-default line-spacing 5) ;; (setq-default line-spacing 5)
(add-to-list 'load-path (expand-file-name "~/.emacs.d/__evo")) (add-to-list 'load-path (expand-file-name "~/.emacs.d/__evo"))
(require 'evo-feeds) ;; (require 'evo-feeds)
(when (display-graphic-p) (when (display-graphic-p)
(add-to-list 'default-frame-alist '(font . "Consolas-11")) (add-to-list 'default-frame-alist '(font . "Consolas-11"))
(add-to-list 'default-frame-alist '(height . 50)) (add-to-list 'default-frame-alist '(height . 50))
@ -169,6 +170,11 @@ There are two things you can do about this warning:
(interactive) (interactive)
(clipboard-kill-ring-save (point-min) (point-max))) (clipboard-kill-ring-save (point-min) (point-max)))
(defun format-whole-buffer ()
"Copy entire buffer to clipboard"
(interactive)
(fill-paragraph (point-min) (point-max)))
(put 'upcase-region 'disabled nil) (put 'upcase-region 'disabled nil)
(setq view-diary-entries-initially t (setq view-diary-entries-initially t
mark-diary-entries-in-calendar t mark-diary-entries-in-calendar t
@ -202,3 +208,4 @@ There are two things you can do about this warning:
(setq request-log-level 'debug) (setq request-log-level 'debug)
(setq request-message-level 'debug) (setq request-message-level 'debug)
(org-clock-persistence-insinuate)