Last active
April 30, 2019 17:55
-
-
Save tot0rokr/ec7b01cd2a28993f0e4ca206b8b992d3 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
# apt update | |
apt-get update | |
# basic files | |
apt-get install -y openssh-server vim python python3 tmux | |
# fzf | |
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf | |
~/.fzf/install | |
# vim plugin | |
git clone --depth 1 https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
vim +PluginInstall +qall | |
# vim swap dir | |
mkdir ~/.vim/temp | |
# development | |
apt-get install -y gcc git g++ make ctags cscope bc flex | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment