Carp/docs/Tooling.md
Erik Svedäng 9e441d9ec7 Tweak.
2017-11-03 14:07:05 +01:00

743 B

Tooling

Vim

https://github.com/hellerve/carp-vim

Emacs

This repo contains a hacked-together Emacs package that depends on Clojure mode being installed. It will hopefully be rewritten and put into one of the package managers eventually, for now you can do something like this to config it:

(add-to-list 'load-path "~/your/path/to/Carp/emacs")

(require 'carp-mode)
(require 'inf-carp-mode)

(add-to-list 'auto-mode-alist '("\\.carp\\'" . carp-mode))

(setq inferior-lisp-program "carp")

Other editors

Clojure syntax highlighting works very well with Carp since it uses the same symbols for most things. If you have written an editor mode, please tell us and it will be added here!