diff --git a/init.el b/init.el index 9f639812..1df104f0 100755 --- a/init.el +++ b/init.el @@ -38,7 +38,7 @@ There are two things you can do about this warning: ;; 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. - '(variable-pitch ((t (:family "Roboto Condensed"))))) + '(variable-pitch ((t (:family "Noto Sans"))))) (custom-set-variables ;; custom-set-variables was added by Custom. @@ -48,7 +48,7 @@ There are two things you can do about this warning: '(auto-save-default nil) '(backup-directory-alist (quote (("" . "~/.emacs.d/_backup_files")))) '(blink-cursor-mode nil) - '(cal-html-directory "~/Documents/Diary") + '(cal-html-directory "~/Documents/Diary" t) '(calendar-date-style (quote iso)) '(calendar-intermonth-text (quote @@ -65,7 +65,7 @@ There are two things you can do about this warning: '(custom-enabled-themes (quote (nord))) '(custom-safe-themes (quote - ("82358261c32ebedfee2ca0f87299f74008a2e5ba5c502bde7aaa15db20ee3731" "4515feff287a98863b7b7f762197a78a7c2bfb6ec93879e7284dff184419268c" default))) + ("24fc62afe2e5f0609e436aa2427b396adf9a958a8fa660edbaab5fb13c08aae6" "82358261c32ebedfee2ca0f87299f74008a2e5ba5c502bde7aaa15db20ee3731" "4515feff287a98863b7b7f762197a78a7c2bfb6ec93879e7284dff184419268c" default))) '(default-frame-alist (quote ((fullscreen . maximized) @@ -165,7 +165,7 @@ There are two things you can do about this warning: '(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))) + (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) '(request-log-level (quote debug)) '(request-message-level (quote debug)) @@ -220,11 +220,18 @@ There are two things you can do about this warning: (cd "~/opt") (when (display-graphic-p) (add-to-list 'default-frame-alist '(undecorated . nil)) - (add-to-list 'default-frame-alist '(font . "Iosevka Term-11")) - (when (string= (system-name) "EVG01788WS") - (add-to-list 'default-frame-alist '(fullscreen . maximized)) - (add-to-list 'load-path (expand-file-name "~/.emacs.d/__evo"))) - (when (string= (system-name) "XPS-8930")))) + (add-to-list 'default-frame-alist '(font . "Iosevka Term-11"))) + (when (string= (system-name) "EVG02667NB") + (add-to-list 'default-frame-alist '(fullscreen . maximized)) + (add-to-list 'load-path (expand-file-name "~/.emacs.d/__evo")) + (unless (file-directory-p (expand-file-name "~/Documents")) + (let ((docs-path (getenv "DOCS_PATH"))) + (setq org-agenda-files `(,(concat docs-path "\\Journal"))) + (setq org-default-notes-file (concat docs-path "\\Journal\\notes.org")) + (setq cal-html-directory (concat docs-path "\\Diary")) + (setq diary-file (concat docs-path "\\Diary\\diary")) + (setq timeclock-file (concat docs-path "\\Diary\\timelog"))))) + (when (string= (system-name) "XPS-8930"))) (when (eq system-type 'gnu/linux) (setq slime-lisp-implementations '((sbcl ("/usr/bin/sbcl"))))