https://github.com/christiansiegel/.dotfiles
https://github.com/christiansiegel/.dotfiles
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/christiansiegel/.dotfiles
- Owner: christiansiegel
- License: mit
- Created: 2023-06-18T10:54:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-12T08:54:16.000Z (almost 2 years ago)
- Last Synced: 2025-01-17T02:26:31.238Z (5 months ago)
- Language: Shell
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# .dotfiles
## Setup
1. Clone this repo
```sh
git clone [email protected]:christiansiegel/.dotfiles.git ~/.dotfiles
```
1. Install [rcm][]
```sh
sudo apt install rcm -y
# or
brew install rcm
```
1. Link the rcm config only
```sh
rcup -v rcrc
```
1. Dry run to see which files will be symlinked
```sh
lsrc
```
1. Link the dotfiles
```sh
rcup -v
```
1. Install ZSH
```sh
sudo apt install zsh -y
chsh -s $(which zsh)
```
1. Install [zsh-syntax-highlighting][]
```sh
sudo apt install zsh-syntax-highlighting -y
# or
brew install zsh-syntax-highlighting
```
1. Install [pure][]
```sh
git clone https://github.com/sindresorhus/pure.git ~/.zsh-pure
```
1. Install znazzy terminal theme (e.g. for iTerm2: https://github.com/sindresorhus/iterm2-snazzy)## Adding new files to the project
```sh
mkrc ~/# Example
mkrc ~/.zshrc
```See also [rcm tutorial][]
Note: The original file will be deleted and symlinked from `~/.dotfiles` back to its original location.
[rcm]: https://github.com/thoughtbot/rcm
[rcm tutorial]: http://thoughtbot.github.io/rcm/rcm.7.html
[pure]: https://github.com/sindresorhus/pure
[zsh-syntax-highlighting]: https://github.com/zsh-users/zsh-syntax-highlighting