vim - How to use vimclojure and SLIMV together? -
both addons have sides, slimv has better repl(faster vimclojure repl), vimclojure's indentation , syntax coloring better(also, vimclojure's syntax coloring working in repl too). , vimclojure's indentation better. example, slimv indentation function:
(defn func [])
and vimclojure's:
(defn func [])
i'm trying use both plugins, sides of each one. need syntax coloring in slimv repl, , vimclojure indentation. have ideas how can that?
- you can replace slimv indent plugin in vimfiles/indent whatever want (so guess vimclojure's indent plugin well).
- you can replace syntax plugin in slimv in vimfiles/syntax (actually there's no special syntax plugin, uses vim's built-in lisp.vim).
- you can enable syntax coloring in slimv repl buffer command in .vimrc:
let g:slimv_repl_syntax = 1
- ... , i'll fix indentation problem mentioned in slimv :)
Comments
Post a Comment