suppressing warnings

This commit is contained in:
Chris Cochrun 2025-10-16 06:15:37 -05:00
parent 2f4cf98dc5
commit c8305877a8
2 changed files with 12 additions and 8 deletions

View file

@ -136,9 +136,9 @@ In order to have this config work on both my desktop with regular joe-schmoe mon
(defun chris/set-transparency ()
"Set the frame to be transparent but not the text"
(set-frame-parameter (selected-frame) 'alpha-background 85)
(add-to-list 'default-frame-alist '(alpha-background . 85))
(add-to-list 'initial-frame-alist '(alpha-background . 85)))
(set-frame-parameter (selected-frame) 'alpha-background 95)
(add-to-list 'default-frame-alist '(alpha-background . 95))
(add-to-list 'initial-frame-alist '(alpha-background . 95)))
(if (daemonp) (add-hook 'after-make-frame-functions
(lambda (frame)
@ -5880,9 +5880,11 @@ I am going to try and use LanguageTool to fix grammatical issues.
** Org Bible
Org Bible is going to be set of functions for creating and using a bible app within Emacs. Let's see if we can't make it work.
#+begin_src emacs-lisp
(load (concat user-emacs-directory "bible.el"))
(add-to-list 'warning-suppress-types '(org-element))
(add-to-list 'warning-suppress-types '(ox-latex))
(add-to-list 'warning-suppress-log-types '(org-element))
(add-to-list 'warning-suppress-log-types '(ox-latex))
(load (concat user-emacs-directory "bible.el"))
#+end_src
** Emacs as RPG
:PROPERTIES:

10
init.el
View file

@ -42,9 +42,9 @@
(defun chris/set-transparency ()
"Set the frame to be transparent but not the text"
(set-frame-parameter (selected-frame) 'alpha-background 85)
(add-to-list 'default-frame-alist '(alpha-background . 85))
(add-to-list 'initial-frame-alist '(alpha-background . 85)))
(set-frame-parameter (selected-frame) 'alpha-background 95)
(add-to-list 'default-frame-alist '(alpha-background . 95))
(add-to-list 'initial-frame-alist '(alpha-background . 95)))
(if (daemonp) (add-hook 'after-make-frame-functions
(lambda (frame)
@ -4325,9 +4325,11 @@ interfere with the default `bongo-playlist-buffer'."
"v" 'chris/elfeed-bongo-insert-item
"N" 'mastodon-notifications--timeline))
(load (concat user-emacs-directory "bible.el"))
(add-to-list 'warning-suppress-types '(org-element))
(add-to-list 'warning-suppress-types '(ox-latex))
(add-to-list 'warning-suppress-log-types '(org-element))
(add-to-list 'warning-suppress-log-types '(ox-latex))
(load (concat user-emacs-directory "bible.el"))
(add-to-list 'load-path "/home/chris/dev/emacs-rpgdm/")
(use-package rpgdm