scripts

Scripts for general automations
git clone git://git.laack.co/scripts.git
Log | Files | Refs

config.sh (484B)


      1 #!/bin/bash
      2 
      3 REPO_SOURCE=ssh://brgr:/home/shared/git/public-repos
      4 
      5 cd
      6 git clone $REPO_SOURCE/nvim
      7 git clone $REPO_SOURCE/dotfiles
      8 
      9 # THIS COULD BE DANGEROUS, PLEASE KNOW WHAT YOU'RE DOING!!!!
     10 rm -rf .config
     11 mv dotfiles .config
     12 mv nvim .config
     13 
     14 rm .bashrc
     15 rm .xinitrc
     16 
     17 ln .config/bashrc .bashrc
     18 ln .config/xinitrc .xinitrc
     19 
     20 rm -rf ~/.local/share/nvim/site/pack/packer
     21 git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim