https://github.com/rsify/dotfiles
💻 personal configuration files
https://github.com/rsify/dotfiles
Last synced: about 1 year ago
JSON representation
💻 personal configuration files
- Host: GitHub
- URL: https://github.com/rsify/dotfiles
- Owner: rsify
- Created: 2016-11-13T14:54:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-25T23:20:34.000Z (almost 3 years ago)
- Last Synced: 2025-01-09T08:28:54.699Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 8.87 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: .github/readme.md
Awesome Lists containing this project
README

# Install
```bash
$ cd ~
$ git init
$ mv .git .dotfiles
$ alias dots "git --git-dir=$HOME/.dotfiles --work-tree=$HOME"
$ dots remote add origin https://github.com/nikersify/dotfiles.git
$ dots fetch
$ dots reset --hard origin/master
$ dots branch -u origin/master
$ dots config status.showuntrackedfiles no
$ echo "" > .config/private/current-city
```
# Shell
```bash
$ echo `which fish` | sudo tee /etc/shells
$ chsh -s `which fish`
# relog to switch login shells
```
# Node
- Download a node binary (https://nodejs.org/en/download)
- Add its `bin/` to path (fish: ``PATH=$PATH:`pwd`/bin``)
- `npx n lts` (or whichever version)