From 6ca7cca330cfa5e15c9a62ed258e9bb747025c73 Mon Sep 17 00:00:00 2001 From: mattkae Date: Fri, 16 Jun 2023 08:03:35 -0400 Subject: Improved the look an feel of org mode --- .gitignore | 3 ++- init.el | 3 ++- lisp/org-custom.el | 12 +++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 3e28789..dd0a5c7 100644 --- a/.gitignore +++ b/.gitignore @@ -18,4 +18,5 @@ tutorial org-roam.db bookmarks tramp -request \ No newline at end of file +request +games \ No newline at end of file diff --git a/init.el b/init.el index bdcc719..989b285 100644 --- a/init.el +++ b/init.el @@ -41,6 +41,7 @@ :config (load-theme 'material t)) + (set-frame-parameter (selected-frame) 'alpha '(99 99)) (add-to-list 'default-frame-alist '(alpha 99 99)) @@ -69,7 +70,7 @@ '(custom-safe-themes '("3c83b3676d796422704082049fc38b6966bcad960f896669dfc21a7a37a748fa" "a27c00821ccfd5a78b01e4f35dc056706dd9ede09a8b90c6955ae6a390eb1c1e" default)) '(package-selected-packages - '(mood-line org-super-agenda material-theme esup glsl-mode fast-scroll yasnippet-snippets jsdoc helm-slack slack smart-mode-line magit rust-mode xref-js2 web-mode vterm-toggle vscode-dark-plus-theme treemacs-projectile tree-sitter-langs tide tern smartparens rtags req-package rainbow-mode pythonic python-mode perfect-margin org-roam org-notify org-modern org-bullets org-alert minimap markdown-mode json-mode js2-refactor js2-highlight-vars js-doc ido-vertical-mode hl-todo highlight-thing highlight-indent-guides helm-projectile helm-posframe helm-ag good-scroll go-mode git-gutter-fringe git-commit flycheck-irony evil eslint-fix emojify eldoc-box eglot drag-stuff doom-themes dashboard css-eldoc counsel company-quickhelp company-irony cmake-mode cmake-ide auctex all-the-icons ac-js2)) + '(htmlize mood-line org-super-agenda material-theme esup glsl-mode fast-scroll yasnippet-snippets jsdoc helm-slack slack smart-mode-line magit rust-mode xref-js2 web-mode vterm-toggle vscode-dark-plus-theme treemacs-projectile tree-sitter-langs tide tern smartparens rtags req-package rainbow-mode pythonic python-mode perfect-margin org-roam org-notify org-modern org-bullets org-alert minimap markdown-mode json-mode js2-refactor js2-highlight-vars js-doc ido-vertical-mode hl-todo highlight-thing highlight-indent-guides helm-projectile helm-posframe helm-ag good-scroll go-mode git-gutter-fringe git-commit flycheck-irony evil eslint-fix emojify eldoc-box eglot drag-stuff doom-themes dashboard css-eldoc counsel company-quickhelp company-irony cmake-mode cmake-ide auctex all-the-icons ac-js2)) '(safe-local-variable-values '((js-indent-level . 4)))) (custom-set-faces ;; custom-set-faces was added by Custom. diff --git a/lisp/org-custom.el b/lisp/org-custom.el index 43dd0e7..2506cb4 100644 --- a/lisp/org-custom.el +++ b/lisp/org-custom.el @@ -11,7 +11,7 @@ ((x-list-fonts "Monaco") '(:font "Monaco")) ((x-list-fonts "Source Sans Pro") '(:font "Source Sans Pro")))) (base-font-color (face-foreground 'default nil 'default)) - (headline `(:inherit default :weight normal :foreground ,base-font-color))) + (headline `(:inherit default :weight normal :foreground ,base-font-color :extend t :background nil :box nil))) (custom-theme-set-faces 'user @@ -21,13 +21,11 @@ `(org-level-5 ((t (,@headline ,@variable-tuple)))) `(org-level-4 ((t (,@headline ,@variable-tuple :height 1.0)))) `(org-level-3 ((t (,@headline ,@variable-tuple :height 1.1)))) - `(org-level-2 ((t (,@headline ,@variable-tuple :height 1.3 :weight bold)))) - `(org-level-1 ((t (,@headline ,@variable-tuple :height 1.5 :weight bold)))) - `(org-document-title ((t (,@headline ,@variable-tuple :height 1.3 :weight:bold)))))) + `(org-level-2 ((t (,@headline ,@variable-tuple :height 1.2 :weight bold)))) + `(org-level-1 ((t (,@headline ,@variable-tuple :height 1.3 :weight bold)))) + `(org-document-title ((t (,@headline ,@variable-tuple :height 1.3 :weight bold)))))) - (variable-pitch-mode 1) - (use-package org-bullets :ensure t :config @@ -35,7 +33,7 @@ ) (org-indent-mode 1) - (visual-line-mode 1)) + ) (setq org-directory "~/OrgRoam") -- cgit v1.2.1