This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "---- vim-plug setup ---- | |
| let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim') | |
| if has('win32')&&!has('win64') | |
| let curl_exists=expand('C:\Windows\Sysnative\curl.exe') | |
| else | |
| let curl_exists=expand('curl') | |
| endif | |
| if !filereadable(vimplug_exists) | |
| if !executable(curl_exists) |
OlderNewer