-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nothing found under plugged folder after successful installing. #1150
Comments
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 Then paste the following code in your vimrc file ( 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
The text was updated successfully, but these errors were encountered: