diff --git a/.gitignore b/.gitignore index 9c7a5cf..7c717f2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # personal info personal.* +personal-sample.el # gpg files elpa/* diff --git a/init.org.d/30-org.org b/init.org.d/30-org.org index 55794b9..a59d2db 100644 --- a/init.org.d/30-org.org +++ b/init.org.d/30-org.org @@ -43,8 +43,7 @@ Make header and document title fonts bigger for better visibility. "set header/level and document title fonts" (custom-set-faces '(org-document-title ((t - (:inherit (bold modus-themes-variable-pitch) - :foreground "#093060" + (:inherit (bold variable-pitch) :height 2.2)))) '(org-level-1 ((t (:inherit outline-1 :weight bold :height 1.5)))) @@ -63,6 +62,8 @@ Make header and document title fonts bigger for better visibility. (use-package org :custom (org-hide-emphasis-markers nil) + (org-agenda-files + `(,(concat (safe-getenv "HOME" user-home-path) "/shared/org"))) :config ;; font setup diff --git a/init.org.d/50-ui.org b/init.org.d/50-ui.org index 8856940..03ef618 100644 --- a/init.org.d/50-ui.org +++ b/init.org.d/50-ui.org @@ -1,7 +1,7 @@ #+TITLE: UI Configurations * Intro -nn this file/section configures the UI settings +this file/section configures the UI settings * Toolbar and Scrollbar removing this stuff makes emacs looks more cleaner diff --git a/init.org.d/70-lang.org b/init.org.d/70-lang.org index f1e99e3..0cca1c7 100644 --- a/init.org.d/70-lang.org +++ b/init.org.d/70-lang.org @@ -30,7 +30,7 @@ (mhtml-mode . ("html-language-server")) (java-mode . ("jdtls")) (js-mode . ("typescript-language-server")) - (python-mode . ("pyright")) + (python-mode . ("jedi-language-server")) (latex-mode . ("texlab"))))) (setq eglot-server-programs (append server-programs eglot-server-programs))) #+end_src