minor fixes

This commit is contained in:
Ian Griffin 2023-02-28 16:05:39 +08:00
parent 1597cb420b
commit a8c8cac535
4 changed files with 6 additions and 4 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
# personal info # personal info
personal.* personal.*
personal-sample.el
# gpg files # gpg files
elpa/* elpa/*

View File

@ -43,8 +43,7 @@ Make header and document title fonts bigger for better visibility.
"set header/level and document title fonts" "set header/level and document title fonts"
(custom-set-faces (custom-set-faces
'(org-document-title ((t '(org-document-title ((t
(:inherit (bold modus-themes-variable-pitch) (:inherit (bold variable-pitch)
:foreground "#093060"
:height 2.2)))) :height 2.2))))
'(org-level-1 ((t (:inherit outline-1 :weight bold '(org-level-1 ((t (:inherit outline-1 :weight bold
:height 1.5)))) :height 1.5))))
@ -63,6 +62,8 @@ Make header and document title fonts bigger for better visibility.
(use-package org (use-package org
:custom :custom
(org-hide-emphasis-markers nil) (org-hide-emphasis-markers nil)
(org-agenda-files
`(,(concat (safe-getenv "HOME" user-home-path) "/shared/org")))
:config :config
;; font setup ;; font setup

View File

@ -1,7 +1,7 @@
#+TITLE: UI Configurations #+TITLE: UI Configurations
* Intro * Intro
nn this file/section configures the UI settings this file/section configures the UI settings
* Toolbar and Scrollbar * Toolbar and Scrollbar
removing this stuff makes emacs looks more cleaner removing this stuff makes emacs looks more cleaner

View File

@ -30,7 +30,7 @@
(mhtml-mode . ("html-language-server")) (mhtml-mode . ("html-language-server"))
(java-mode . ("jdtls")) (java-mode . ("jdtls"))
(js-mode . ("typescript-language-server")) (js-mode . ("typescript-language-server"))
(python-mode . ("pyright")) (python-mode . ("jedi-language-server"))
(latex-mode . ("texlab"))))) (latex-mode . ("texlab")))))
(setq eglot-server-programs (append server-programs eglot-server-programs))) (setq eglot-server-programs (append server-programs eglot-server-programs)))
#+end_src #+end_src