2024/02/23 更新
c-quick を straight.el でロードしたい場合は以下を .emacs または init.el に入れてください(但し git のインストールが必要です):
~/.emacs or ~/.emacs.d/init.el
(defvar bootstrap-version)
(let ((bootstrap-file
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
(bootstrap-version 6))
(unless (file-exists-p bootstrap-file)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage))
(straight-use-package '(c-quick :type git :host github :repo "emacs-pkg/c-quick"))
(require 'c-quick)
尚、straight.el ではパッケージを最新化するのに手動で操作をする必要があります。以下の記事をご覧ください:
以下の記事にも追記しました。
よろしくお願いいたします。