https://github.com/cortiz/.dotfiles-old
https://github.com/cortiz/.dotfiles-old
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cortiz/.dotfiles-old
- Owner: cortiz
- Created: 2019-10-04T16:16:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-26T14:58:24.000Z (over 5 years ago)
- Last Synced: 2025-03-15T11:30:36.653Z (3 months ago)
- Language: Shell
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# .dotfiles
## Setup environment in a new computer
### Requiremets
* Git
* Zsh
* Oh-my-zsh
#### Optional Req
* [neovim](https://neovim.io/)
* Python3
* [LF Manager](https://github.com/gokcehan/lf)### Steps
```bash
git clone --bare https://github.com/cortiz/dotfiles.git $HOME/.dotfiles
alias dfs='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
dfs checkout
```### If you're starting from scratch, go ahead and…
```bash
git init --bare $HOME/.dotfiles
alias dfs='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
dfs config --local status.showUntrackedFiles no
dfs checkout
dfs add FILE
dfs commit
dfs push origin master
```