Vim :terminal is not the default, to use it you will have to add this line to your .vimrc:
let g:slime_target = "vimterminal"When you invoke vim-slime for the first time, you will be prompted for more configuration.
Vim terminal configuration can be set by using the following in your .vimrc:
let g:slime_vimterminal_config = {options}You can specify if you have frequently used commands:
let g:slime_vimterminal_cmd = "command"If you use Node, set it as follows:
let g:slime_vimterminal_cmd = "node"You can make the vim terminal closed automatically:
let g:slime_vimterminal_config = {"term_finish": "close"}for possible options, see :help term_start()