https://github.com/robpol86/dotfiles
My dotfiles. Nothing special.
https://github.com/robpol86/dotfiles
Last synced: 4 months ago
JSON representation
My dotfiles. Nothing special.
- Host: GitHub
- URL: https://github.com/robpol86/dotfiles
- Owner: Robpol86
- Created: 2016-02-16T19:36:38.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-04-06T19:41:49.000Z (about 1 year ago)
- Last Synced: 2025-01-10T19:24:53.254Z (5 months ago)
- Language: Shell
- Size: 37.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
My dotfiles. Nothing special.
Used on OS X and Linux (Fedora/RHEL/Centos/Ubuntu/Debian).
## Install
```shell
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
``````shell
git -C "$ZSH_CUSTOM/plugins" clone https://github.com/zsh-users/zsh-syntax-highlighting.git
git clone https://github.com/so-fancy/diff-so-fancy.git "$HOME/workspace/diff-so-fancy"
git clone https://github.com/Robpol86/dotfiles.git "$HOME/workspace/dotfiles" && cd "$_" && \
install -m0700 -d ~/.ssh && \
ln -s "$PWD/ssh_config" ~/.ssh/config && \
ln -fs "$PWD/vimrc" ~/.vimrc && \
ln -fs "$PWD/themes/robpol86.zsh-theme" "$ZSH/custom/themes/" && \
ln -fs "$PWD/zshrc.sh" ~/.zshrc && \
ln -fs "$PWD/zprofile.sh" ~/.zprofile && \
zsh -lc _robpol86_run_once
```After setting up SSH keys:
```shell
git remote set-url origin [email protected]:Robpol86/dotfiles.git
```