Skip to content

Instantly share code, notes, and snippets.

@khale
Last active May 24, 2020 15:11
Show Gist options
  • Save khale/4b8c325caad939ef9a6fc917250a7c90 to your computer and use it in GitHub Desktop.
Save khale/4b8c325caad939ef9a6fc917250a7c90 to your computer and use it in GitHub Desktop.
Nautilus-Vagrant user provision script
#!/usr/bin/env bash
# install tmux conf
git clone https://gist.github.com/khale/0d7f8b2e24bb874a1008f894716f16df
mv 0d7f8b2e24bb874a1008f894716f16df/.tmux.conf ~
rm -rf 0d7f8b2e24bb874a1008f894716f16df
# install vimrc
git clone https://gist.github.com/2dc44d3005bb369aaee6324056a095c4.git
mv 2dc44d3005bb369aaee6324056a095c4/.vimrc ~
rm -rf 2dc44d3005bb369aaee6324056a095c4
# install vim color scheme
git clone https://gist.github.com/9329a0e203f81c8ee3644eb9e67b3a1d.git
mkdir -p ~/.vim/colors
mv 9329a0e203f81c8ee3644eb9e67b3a1d/molokai.vim ~/.vim/colors
rm -rf 9329a0e203f81c8ee3644eb9e67b3a1d
# install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# clone nautilus
git clone https://github.com/HExSA-Lab/nautilus.git
cd nautilus
ctags -R
# get the config
git clone https://gist.github.com/00cc3dadb7fb8a2820641b19d9bd0a06.git
mv 00cc3dadb7fb8a2820641b19d9bd0a06/.config .
rm -rf 00cc3dadb7fb8a2820641b19d9bd0a06
# get the demo
git clone https://gist.github.com/fd5dbb11075265c71fdeec6e42d583e6.git
mv fd5dbb11075265c71fdeec6e42d583e6/demo .
chmod +x demo
rm -rf fd5dbb11075265c71fdeec6e42d583e6
# build it
make isoimage
@nandavelugoti
Copy link

nandavelugoti commented May 23, 2020

Below command is failing with not found error when doing vagrant up.
line 23: git clone https://bitbucket.org/kchale/nautilus.git

I guess the link is not reachable.
error

@khale
Copy link
Author

khale commented May 24, 2020

@nandavelugoti good catch. That was the old repo. I updated it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment