Skip to content

Instantly share code, notes, and snippets.

@sergeant-wizard
Last active April 12, 2017 22:37
Show Gist options
  • Save sergeant-wizard/6f30a61a13a8772d056d51e975ca503f to your computer and use it in GitHub Desktop.
Save sergeant-wizard/6f30a61a13a8772d056d51e975ca503f to your computer and use it in GitHub Desktop.
cd
git clone [email protected]:sergeant-wizard/rc_files
ln -s rc_files/.vimrc .vimrc
ln -s rc_files/tmux.conf.linux .tmux.conf
git clone https://github.com/robbyrussell/oh-my-zsh.git
git clone https://github.com/vim/vim.git
cd vim
./configure --with-features=huge --enable-multibyte --enable-pythoninterp=yes --enable-cscope --with-x --prefix=/home/ryo/vim/
make -j4
make install
cd
pip install --user powerline-status
git clone https://github.com/powerline/powerline.git
git clone https://github.com/rupa/v.git
git clone https://github.com/rupa/z.git
pip install --user virtualenv
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
git clone https://github.com/opencv/opencv.git
cd opencv
mkdir build
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/home/ryo/opencv/ -D WITH_TBB=ON -D BUILD_NEW_PYTHON_SUPPORT=ON -D WITH_V4L=ON -D INSTALL_C_EXAMPLES=ON -D INSTALL_PYTHON_EXAMPLES=ON -D BUILD_EXAMPLES=ON -D WITH_MPEG=ON ..
make -j4
make install
git config --global user.email "hogehoge"
git config --global user.name "Ryo Miyajima"
git config --global core.editor vim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment