An open API service indexing awesome lists of open source software.

https://github.com/robacarp/dotfiles

my dotfiles, and a bunch of other things
https://github.com/robacarp/dotfiles

Last synced: 10 months ago
JSON representation

my dotfiles, and a bunch of other things

Awesome Lists containing this project

README

          

Various dot files to keep things portable and so I can always feel 'at home' wherever I go....

### Notes for getting setup on a new machine:

Prerequisites:

#### Install fish shell

Might look something like this:

```
sudo add-apt-repository -y ppa:fish-shell/release-3
sudo apt install -y fish
sudo chsh $(whoami) -s $(which fish)
```

Copy and paste this snippet into a running fish shell:

```
ssh-keyscan github.com >> ~/.ssh/known_hosts
alias dots="/usr/bin/git --git-dir=$HOME/.dots.git/ --work-tree=$HOME"
git clone --bare git@github.com:robacarp/config_files.git $HOME/.dots.git
dots checkout -f
dots config --local status.showUntrackedFiles no
dots config user.name 'rob' ; dots config user.email 'robacarp@users.noreply.github.com'
vim --cmd 'so ~/.config/.vim-plugins' --cmd 'PlugInstall' +'qall!'
```