Skip to content
Blake Miller edited this page May 31, 2016 · 3 revisions

GNU Emacs

To have Emacs open .pxi files using clojure-mode, put the following into your ~/.emacs file:

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

There is also a major mode for Pixie which provides some repl integration based on inf-clojure:

https://github.com/johnwalker/pixie-mode

Vim

in your .vimrc:

au BufNewFile,BufRead *.pxi set filetype=clojure
Clone this wiki locally