suppressing warnings
This commit is contained in:
parent
2f4cf98dc5
commit
c8305877a8
2 changed files with 12 additions and 8 deletions
10
README.org
10
README.org
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue