Update init.el

This commit is contained in:
Marcus Kammer 2019-11-12 16:11:39 +00:00
parent 1f2c1ded54
commit e43aa05991

17
init.el
View file

@ -65,12 +65,14 @@ There are two things you can do about this warning:
'(custom-enabled-themes (quote (nord))) '(custom-enabled-themes (quote (nord)))
'(custom-safe-themes '(custom-safe-themes
(quote (quote
("9e31aff9afe3c20a33dd966b4c54c6a5151f07659362e4b06bde38ded5370dae" "24fc62afe2e5f0609e436aa2427b396adf9a958a8fa660edbaab5fb13c08aae6" "82358261c32ebedfee2ca0f87299f74008a2e5ba5c502bde7aaa15db20ee3731" "4515feff287a98863b7b7f762197a78a7c2bfb6ec93879e7284dff184419268c" default))) ("cdb4ffdecc682978da78700a461cdc77456c3a6df1c1803ae2dd55c59fa703e3" "9e31aff9afe3c20a33dd966b4c54c6a5151f07659362e4b06bde38ded5370dae" "24fc62afe2e5f0609e436aa2427b396adf9a958a8fa660edbaab5fb13c08aae6" "82358261c32ebedfee2ca0f87299f74008a2e5ba5c502bde7aaa15db20ee3731" "4515feff287a98863b7b7f762197a78a7c2bfb6ec93879e7284dff184419268c" default)))
'(default-frame-alist '(default-frame-alist
(quote (quote
((fullscreen . maximized) ((fullscreen . maximized)
(width . 90) (left . 5)
(height . 46) (top . 5)
(width . 195)
(height . 35)
(font . "Iosevka Term-13.0") (font . "Iosevka Term-13.0")
(vertical-scroll-bars) (vertical-scroll-bars)
(horizontal-scroll-bars) (horizontal-scroll-bars)
@ -96,7 +98,7 @@ There are two things you can do about this warning:
'(fill-column 72) '(fill-column 72)
'(font-lock-maximum-decoration t) '(font-lock-maximum-decoration t)
'(global-auto-revert-mode t) '(global-auto-revert-mode t)
'(global-display-line-numbers-mode t) '(global-display-line-numbers-mode nil)
'(global-font-lock-mode t) '(global-font-lock-mode t)
'(global-hl-line-mode t) '(global-hl-line-mode t)
'(icomplete-mode t) '(icomplete-mode t)
@ -165,7 +167,7 @@ There are two things you can do about this warning:
'(package-enable-at-startup t) '(package-enable-at-startup t)
'(package-selected-packages '(package-selected-packages
(quote (quote
(immaterial-theme arc-dark-theme 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))) (web-mode zenburn-theme immaterial-theme arc-dark-theme 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) '(python-shell-interpreter "python3" t)
'(request-log-level (quote debug)) '(request-log-level (quote debug))
'(request-message-level (quote debug)) '(request-message-level (quote debug))
@ -220,9 +222,8 @@ There are two things you can do about this warning:
(cd "~/opt") (cd "~/opt")
(when (display-graphic-p) (when (display-graphic-p)
(add-to-list 'default-frame-alist '(undecorated . nil)) (add-to-list 'default-frame-alist '(undecorated . nil))
(add-to-list 'default-frame-alist '(font . "Iosevka Term-11"))) (add-to-list 'default-frame-alist '(font . "Iosevka Term-12")))
(when (string= (system-name) "EVG02667NB") (when (string= (system-name) "EVG02667NB")
(add-to-list 'default-frame-alist '(fullscreen . maximized))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/__evo")) (add-to-list 'load-path (expand-file-name "~/.emacs.d/__evo"))
(unless (file-directory-p (expand-file-name "~/Documents")) (unless (file-directory-p (expand-file-name "~/Documents"))
(let ((docs-path (getenv "DOCS_PATH"))) (let ((docs-path (getenv "DOCS_PATH")))
@ -290,6 +291,8 @@ 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))))
) )
(add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode))
;; ===================== Org-mode ====================== ;; ;; ===================== Org-mode ====================== ;;
(add-hook 'org-mode-hook 'turn-on-font-lock) (add-hook 'org-mode-hook 'turn-on-font-lock)
(org-clock-persistence-insinuate) (org-clock-persistence-insinuate)