diff options
-rwxr-xr-x | setup.sh | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -56,7 +56,19 @@ if [[ $REPLY =~ ^[Yy]$ ]] then echo "Installing configurations..." git clone https://git.matejamaric.com/dotfiles /tmp/dotfiles + + cp /tmp/dotfiles/.bash* $HOME + cp /tmp/dotfiles/.dir_colors $HOME + + cp /tmp/dotfiles/.vimrc $HOME + cp /tmp/dotfiles/.Xdefaults $HOME + cp -r /tmp/dotfiles/.xmonad $HOME + cp -r /tmp/dotfiles/.config $HOME + sed -i "s/your-user-name/$USER/" $HOME/.config/nvim/coc-settings.json + + [[ ! -d $HOME/stuff ]] && mkdir $HOME/stuff + cp -r /tmp/dotfiles/scripts $HOME/stuff fi |