Nothing found under plugged folder after successful installing.
Explain the problem here ...
I use nvim.appimage in Linux system, and try to install easymotion, it looks installing is successful(see the pic below), but I can't find anything under plugged folder, and the plug doesn't work. Anything wrong with my setting?
Thanks, Alex

- Type:
- [ ] Bug
- [ ] Enhancement
- [ ] Feature Request
- √ Question
- OS:
- [ ] All/Other
- √ Linux
- [ ] OS X
- [ ] Windows
- Vim:
- [ ] Terminal Vim
- [ ] GVim
- √ Neovim
Could you show your vim-plug file that you use to install easymotion?

THIS IS OPTIONAL : If you have nothing important or not done anything with nvim yet, then clear everything inside ~/.config/nvim and ~/.local/share/nvim.
Then paste the following code in your vimrc file ( ~/.config/nvim/init.vim ) :
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
if empty(glob(data_dir . '/autoload/plug.vim'))
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin()
" The default plugin directory will be as follows:
" - Vim (Linux/macOS): '~/.vim/plugged'
" - Vim (Windows): '~/vimfiles/plugged'
" - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged'
" You can specify a custom plugin directory by passing it as the argument
" - e.g. `call plug#begin('~/.vim/plugged')`
" - Avoid using standard Vim directory names like 'plugin'
" Make sure you use single quotes
" Shorthand notation; fetches https://github.com/easymotion/vim-easymotion
Plug 'easymotion/vim-easymotion'
call plug#end()
To see stdpath('data'), open nvim, press :(shift key + ; key) and type:
echo stdpath('data')