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
- Host: GitHub
- URL: https://github.com/robacarp/dotfiles
- Owner: robacarp
- Created: 2010-08-02T19:40:23.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2025-03-21T17:42:50.000Z (over 1 year ago)
- Last Synced: 2025-06-21T05:08:02.334Z (about 1 year ago)
- Language: Vim Script
- Homepage:
- Size: 888 KB
- Stars: 9
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!'
```