Update init file
This commit is contained in:
parent
e723ae9ffd
commit
0d786dff7f
1 changed files with 11 additions and 4 deletions
15
init.el
15
init.el
|
@ -71,11 +71,11 @@ There are two things you can do about this warning:
|
|||
'(newsticker-url-list-defaults
|
||||
(quote
|
||||
(("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")
|
||||
("Phoronix" "https://www.phoronix.com/rss.php")
|
||||
("Ubuntu" "https://blog.ubuntu.com/feed")
|
||||
("Python PEP" "https://www.python.org/dev/peps/peps.rss/")
|
||||
("openSuse News" "https://news.opensuse.org/feed"))))
|
||||
("Python PEP" "https://www.python.org/dev/peps/peps.rss/"))))
|
||||
'(org-agenda-files (quote ("~/Documents/Journal")))
|
||||
'(org-babel-load-languages
|
||||
(quote
|
||||
|
@ -84,11 +84,12 @@ There are two things you can do about this warning:
|
|||
(python . t)
|
||||
(sqlite . t)
|
||||
(lisp . t))))
|
||||
'(org-clock-persist t)
|
||||
'(org-default-notes-file "~/Documents/Journal/notes.org")
|
||||
'(package-enable-at-startup t)
|
||||
'(package-selected-packages
|
||||
(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)
|
||||
'(size-indication-mode nil)
|
||||
'(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)
|
||||
;; (setq-default line-spacing 5)
|
||||
(add-to-list 'load-path (expand-file-name "~/.emacs.d/__evo"))
|
||||
(require 'evo-feeds)
|
||||
;; (require 'evo-feeds)
|
||||
(when (display-graphic-p)
|
||||
(add-to-list 'default-frame-alist '(font . "Consolas-11"))
|
||||
(add-to-list 'default-frame-alist '(height . 50))
|
||||
|
@ -169,6 +170,11 @@ There are two things you can do about this warning:
|
|||
(interactive)
|
||||
(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)
|
||||
(setq view-diary-entries-initially 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-message-level 'debug)
|
||||
(org-clock-persistence-insinuate)
|
||||
|
|
Loading…
Add table
Reference in a new issue