Forgetting nixified doom for now

This commit is contained in:
niten 2021-07-26 19:14:19 -05:00
parent 54f5012c37
commit 272271650d
1 changed files with 16 additions and 16 deletions

View File

@ -11,25 +11,25 @@
; (package! some-package)
;;(package! elpher)
;;(package! edit-server)
;;(package! ivy-prescient)
;;(package! ace-jump-mode)
;;(package! md4rd)
;;(package! noflet)
(package! edit-server)
(package! ivy-prescient)
(package! ace-jump-mode)
(package! md4rd)
(package! noflet)
;;(defun tls-nocheck-error-advice (orig-fun &rest args)
;; "Advise a function (with :around) not to check TLS errors.
;;
;;ORIG-FUN - Funtion name to be advised
;;ARGS - Arguments to function
(defun tls-nocheck-error-advice (orig-fun &rest args)
"Advise a function (with :around) not to check TLS errors.
;;Usage: (advice-add 'my-function-for-advisement :around 'tls-nocheck-error-advice."
;; (let ((gnutls-verify-error nil))
;; (apply orig-fun args)))
ORIG-FUN - Funtion name to be advised
ARGS - Arguments to function
;; (use-package! elpher
;; :config
;; (advice-add 'elpher-get-gemini-response :around 'tls-nocheck-error-advice))
Usage: (advice-add 'my-function-for-advisement :around 'tls-nocheck-error-advice."
(let ((gnutls-verify-error nil))
(apply orig-fun args)))
(use-package! elpher
:config
(advice-add 'elpher-get-gemini-response :around 'tls-nocheck-error-advice))
;; To install a package directly from a remote git repo, you must specify a
;; `:recipe'. You'll find documentation on what `:recipe' accepts here: