Filter compilation warnings from popups
This commit is contained in:
parent
cd6bce2677
commit
6f07040cfb
10
README.org
10
README.org
|
@ -19,6 +19,7 @@ default.
|
||||||
(when (file-exists-p bootstrap-file)
|
(when (file-exists-p bootstrap-file)
|
||||||
(load bootstrap-file nil 'nomessage)))
|
(load bootstrap-file nil 'nomessage)))
|
||||||
|
|
||||||
|
(require 'straight)
|
||||||
(straight-use-package 'use-package)
|
(straight-use-package 'use-package)
|
||||||
#+end_src
|
#+end_src
|
||||||
** Defaults
|
** Defaults
|
||||||
|
@ -37,6 +38,15 @@ section of configuration.
|
||||||
(delete-selection-mode +1)
|
(delete-selection-mode +1)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
Suppress compilation warnings since they're /usually/ just about
|
||||||
|
docstring sizes...
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(require 'warnings)
|
||||||
|
(add-to-list 'warning-suppress-types '(comp))
|
||||||
|
(add-to-list 'warning-suppress-log-types '(comp))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
Bind mouse keys to expected movement commands
|
Bind mouse keys to expected movement commands
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
("seq" . "da86da9bf111f68fb81efd466d76d53af5aebc00")
|
("seq" . "da86da9bf111f68fb81efd466d76d53af5aebc00")
|
||||||
("shrink-path.el" . "c14882c8599aec79a6e8ef2d06454254bb3e1e41")
|
("shrink-path.el" . "c14882c8599aec79a6e8ef2d06454254bb3e1e41")
|
||||||
("straight.el" . "88e574ae75344e39b436f863ef0344135c7b6517")
|
("straight.el" . "88e574ae75344e39b436f863ef0344135c7b6517")
|
||||||
("string-inflection" . "50ad54970b3cc79b6b83979bde9889ad9a9e1a9c")
|
("string-inflection" . "be3808c9bbd3f732f94cea7e19ad68eac5f6dad0")
|
||||||
("tempel" . "317c0e41d542721db11a7a8a1c6b78762959259b")
|
("tempel" . "317c0e41d542721db11a7a8a1c6b78762959259b")
|
||||||
("track-changes" . "fa984c7d5a67b60bad4240e15a6d0d9d1896b07d")
|
("track-changes" . "fa984c7d5a67b60bad4240e15a6d0d9d1896b07d")
|
||||||
("transient" . "b2cb4e578f2362a0354c4a31a6bd89d6c4b63d63")
|
("transient" . "b2cb4e578f2362a0354c4a31a6bd89d6c4b63d63")
|
||||||
|
|
Loading…
Reference in a new issue