diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-02-21 22:26:47 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-02-21 22:26:47 +0100 |
commit | 0e25fec7b1e2e1f4c53cd61be1c829ca33e5396b (patch) | |
tree | fae1666164dcec1d7f96e3ffdee245789fbebd82 | |
parent | aebed6fc90b6d72018581abca4b18c6454c0f684 (diff) |
Use :init instead of :custom.
-rw-r--r-- | init.org | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -779,11 +779,11 @@ The =scpaste= package allows me to quickly paste text to my personal web site. #+BEGIN_SRC elisp (use-package scpaste - :custom - (scpaste-http-destination "https://elephly.net/paste") - (scpaste-scp-destination "elephly.net:~/elephly.net/paste/") - (scpaste-scp-port "1022") - (scpaste-make-name-function #'scpaste-make-name-from-timestamp)) + :init + (setq scpaste-http-destination "https://elephly.net/paste") + (setq scpaste-scp-destination "elephly.net:~/elephly.net/paste/") + (setq scpaste-scp-port "1022") + (setq scpaste-make-name-function #'scpaste-make-name-from-timestamp)) #+END_SRC * Pretty symbols @@ -823,8 +823,8 @@ I run MPC on a local server. #+BEGIN_SRC elisp (use-package simple-mpc - :custom - (simple-mpc-arguments "-h 192.168.178.20")) + :init + (setq simple-mpc-arguments "-h 192.168.178.20")) #+END_SRC * Lilypond |