diff options
author | EuAndreh <eu@euandre.org> | 2023-03-11 19:31:49 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-11 19:31:49 -0300 |
commit | 2318ae0bee9a2f44679cbf70468beef140a55912 (patch) | |
tree | 61c228e356d6dacdedee0faec59753b48d9fa12c /etc | |
parent | etc/sh/rc: Remove special handling of $TMUX in $PS1 (diff) | |
download | dotfiles-2318ae0bee9a2f44679cbf70468beef140a55912.tar.gz dotfiles-2318ae0bee9a2f44679cbf70468beef140a55912.tar.xz |
etc/lisp-cli/init.lisp: Add definition of #'FMT
Diffstat (limited to 'etc')
-rw-r--r-- | etc/lisp-cli/init.lisp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/lisp-cli/init.lisp b/etc/lisp-cli/init.lisp index 69cb054..1017984 100644 --- a/etc/lisp-cli/init.lisp +++ b/etc/lisp-cli/init.lisp @@ -31,3 +31,6 @@ (cl-ppcre:split ":" (uiop:getenv "LIBRARY_PATH"))) (load-once :cl-fswatch) + +(defun fmt (&rest args) + (apply #'format nil args)) |