Introduction to Conjure

Conjure is a dynamic interactive development tool for Neovim that bridges your code and a live REPL (Read-Eval-Print Loop). Designed for Lisp dialects like Clojure, it enables:

  • Inline code evaluation (forms, functions, buffers)
  • REPL integration (Clojure, ClojureScript, Babashka)
  • Test execution (namespace/current form/all tests)
  • Result inspection in dedicated log buffers

Your LunarVim configuration optimizes Conjure for speed, with Space as leader and , as local leader, creating a fluid Clojure-centric workflow.


Your Conjure Setup

Core Configuration

vim.g["conjure#log#botright"] = true   -- Logs appear at bottom  
vim.g["conjure#log#wrap"] = true       -- Readable wrapped text  
vim.g["conjure#log#on_eval"] = true    -- Auto-show logs on eval  
vim.g["conjure#mapping#prefix"] = "<leader>j" -- Space + j prefix  

This creates a clean, non-intrusive evaluation experience.


Keybindings & Workflows

All commands start with Space + j followed by a key:

1. Evaluation

KeyActionCommand SequenceUse Case
eEval current formSpace + j + eEvaluate function under cursor
rEval root formSpace + j + rEval top-level form
mEval marked formSpace + j + mEval visual selection
bEval bufferSpace + j + bReload entire file

Example:

(defn sum [a b]  
  (+ a b))  
  • Place cursor inside (+ a b), press Space + j + e → Evaluates the addition.
  • Place cursor inside sum, press Space + j + r → Evaluates entire defn.

2. Log Management

KeyAction
lToggle log split
cClose visible logs

Pro Tip: Use Enter on log results to jump to their source!


3. Testing

KeyActionCommand Sequence
t cTest current formSpace + j + t c
t nTest current namespaceSpace + j + t n
t aTest allSpace + j + t a
t lTest lastSpace + j + t l

Workflow:

  1. Write a test:
    (deftest sum-test  
      (is (= 3 (sum 1 2))))  
  2. Space + j + t c → Runs this test.
  3. Space + j + t a → Runs all project tests.

4. REPL Connection

KeyAction
jStart REPL (Jack-in)

Press Space + j + j to launch a REPL session. Conjure auto-detects Lein, Clj, Babashka, or deps.edn projects.


Advanced Configuration Tips

1. Result Inspection

Add this to your config to keep logs persistent:

vim.g["conjure#log#hud#enabled"] = false  -- Disable HUD for full log buffer  

2. Custom REPL Commands

Use , (local leader) in log buffers to:

  • ,repl/enter: Switch to REPL buffer
  • ,repl/previous: Cycle REPL history

Troubleshooting

  • No evaluation results? Ensure REPL is active (Space + j + j).
  • Keybindings not working? Verify conjure#mapping#prefix is set correctly.
  • Logs too verbose? Use Space + j + c to clear them.

Integration with LunarVim

  • File Explorer: Keep neo-tree (Space + e) open for project navigation.
  • Structural Editing: Pair with nvim-paredit (previous setup) for precise s-expression manipulation.
  • Git: Use LunarVim’s git integration (Space + g m) to track changes.

Example Workflow

  1. Start REPL: Space + j + j
  2. Edit Code:
    (defn greet [name]  
      (str "Hello, " name))  
  3. Evaluate: Space + j + b → Reload buffer.
  4. Test:
    (deftest greet-test  
      (is (= "Hello, Alice" (greet "Alice"))))  
    • Space + j + t c → Validate test.
  5. Inspect: Press Enter on test results in log to jump back.

Conclusion

With your Conjure configuration in LunarVim, you’ve created a REPL-powered Clojure IDE that:

  • Makes code experimentation immediate (Space + j + e)
  • Simplifies test-driven development (Space + j + t n/a/c)
  • Keeps results organized (Space + j + l/c)

By leveraging your Space leader and logical key groupings, you minimize context switching between coding and evaluation.