Last active
July 15, 2020 12:30
-
-
Save shinshin86/17fe2e40529f6244f17d32ed2e0aeec3 to your computer and use it in GitHub Desktop.
Install script "vim-plug" and "fzf"
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
| ######################################################## | |
| # This environment is already install "git" and "vim" | |
| ######################################################## | |
| # clean & update | |
| apt-get autoclean | |
| apt-get update | |
| # Install curl | |
| apt-get install -y curl | |
| # Install vim-plug | |
| curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ | |
| https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| # Install fzf | |
| git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf | |
| ~/.fzf/install | |
| source ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment