Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让 Clojure 在 repl 启动时加载特定于项目的 .clj 文件?每当我打开一个新的 repl 时,我都希望有一些可用的功能(我在 emacs 上使用 nREPL,因为它的价值......)
谢谢
project.clj向您的 's添加一个条目,:repl-options如下所示
project.clj
:repl-options
:repl-options {:init (load-file "src/your-project-specific-file.clj") }
如果您希望您的功能在所有 REPL 中都可用,请在用户配置文件中添加一个条目,.lein/profiles.clj如下所示:
.lein/profiles.clj
{ :user {:repl-options {:init (load-file "path/to/file.clj")}} }