-
-
Notifications
You must be signed in to change notification settings - Fork 8
Home
Alisue edited this page Mar 30, 2022
·
2 revisions
First of all, install Deno and make sure deno command is executable from your Vim/Neovim by:
:echo exepath('deno')
It would show an executable path of deno command. If nothing is shown, make sure the $PATH
is correct in your Vim/Neovim.
Use g:denops#deno
if you'd like to specify deno executable manually like:
let g:denops#deno = '/opt/deno/bin/deno'
With vim-plug
Plug 'vim-denops/denops.vim'
Plug 'lambdalisue/gin.vim'
With dein.vim
call dein#add('vim-denops/denops.vim')
call dein#add('lambdalisue/gin.vim')
With minpac
call minpac#add('vim-denops/denops.vim')
call minpac#add('lambdalisue/gin.vim')