forked from mudhorn/dotfiles
made installer & updated instructions
This commit is contained in:
parent
69b4587ddc
commit
58840e41be
|
@ -3,10 +3,6 @@
|
||||||
cd
|
cd
|
||||||
git clone https://github.com/flipsidecreations/dotfiles.git
|
git clone https://github.com/flipsidecreations/dotfiles.git
|
||||||
|
|
||||||
(make sure these files do not exist first)
|
then run install.sh
|
||||||
ln -s dotfiles/.bashrc ~/
|
|
||||||
ln -s dotfiles/.vimrc ~/
|
|
||||||
ln -s dotfiles/.screenrc ~/
|
|
||||||
ln -s dotfiles/.tmux.conf ~/
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
14
install.sh
Executable file
14
install.sh
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
rm ~/.bashrc
|
||||||
|
rm ~/.bash_aliases
|
||||||
|
rm ~/.bash_exports
|
||||||
|
rm ~/.bash_wrappers
|
||||||
|
rm ~/.vimrc
|
||||||
|
rm ~/.screenrc
|
||||||
|
rm ~/.tmux.conf
|
||||||
|
ln -s dotfiles/.bashrc ~/
|
||||||
|
ln -s dotfiles/.vimrc ~/
|
||||||
|
ln -s dotfiles/.screenrc ~/
|
||||||
|
ln -s dotfiles/.tmux.conf ~/
|
||||||
|
|
Loading…
Reference in a new issue