I use Ubuntu 18.04
$ vim .vimrc
[coc.nvim] "/path/to/node" is not executable, checkout https://nodejs.org/en/download/
syntax on
set nocompatible " be iMproved, required
set number
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'dart-lang/dart-vim-plugin'
Plugin 'natebosch/vim-lsc'
Plugin 'natebosch/vim-lsc-dart'
Plugin 'neoclide/coc.nvim', {'branch': 'release'}
call vundle#end() " required
filetype plugin indent on " required
let g:lsc_auto_map = v:true
let g:coc_node_path = '/path/to/node'
I make .vimrc PluginInstall.
Vim version 8.2.
5.:CocInstall coc-flutter does not work.
What can I do? Flutter doesn't write automatically.
"------- dart flutter ------------
if count(g:bundle_groups, 'dart')
Plugin 'natebosch/vim-lsc'
Plugin 'natebosch/vim-lsc-dart'
Plugin 'dart-lang/dart-vim-plugin'
Plugin 'thosakwe/vim-flutter'
endif