我一直试图在我的macOS设备上设置一个neovim环境来进行react开发,当我试图通过vim插件安装自动完成插件(coc-nvm(时,当我尝试导航到"pluged"目录时,它给了我以下错误:
cd: no such file or directory: plugged
这是我的init.vim文件:
syntax on
:set number
:set tabstop=4 softtabstop=4
:set shiftwidth=4
:set expandtab
:set smartindent
:set nu
:set nowrap
:set smartcase
:set noswapfile
:set incsearch
:set colorcolumn=80
call plug#begin()
Plug 'https://github.com/vim-airline/vim-airline'
Plug 'https://github.com/ryanoasis/vim-devicons'
Plug 'https://github.com/preservim/tagbar'
Plug 'https://github.com/neoclide/coc.nvim'
call plug#end()
如有任何帮助,我们将不胜感激。
默认情况下,在MacOS上,路径为:
/Users/{your-user-name}/.local/share/nvim/plugged/
https://vi.stackexchange.com/对于这类问题来说是一个更好的地方,因为它与(neo(vim有关,而不是编程。
也就是说,如果你在正确的位置寻找文件夹,而vim-pluged没有自动创建,那就自己创建吧。在Linux上,默认位置相当于:
call plug#begin(stdpath('data') . '/plugged')
ps。neovim从0.5版本开始就内置了LSP支持。
call plug#begin('add here path where you want your folder to be , in your case i guess ~/.config/nvim/plugged ')
然后:InstallPlug