https://github.com/bringhurst/dotfiles
Personal dotfiles. Only intended for personal use.
https://github.com/bringhurst/dotfiles
Last synced: 3 months ago
JSON representation
Personal dotfiles. Only intended for personal use.
- Host: GitHub
- URL: https://github.com/bringhurst/dotfiles
- Owner: bringhurst
- Created: 2025-03-16T15:46:25.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-16T22:24:04.000Z (over 1 year ago)
- Last Synced: 2025-03-16T22:30:59.659Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal dotfiles
Just my personal dotfiles.
## Install
### (Linux) Install bitwarden:
```
# If on debian
# sudo apt-get install unzip
mkdir -p ~/bin
wget -P ~/bin -O ~/bin/bw "https://bitwarden.com/download/?app=cli&platform=linux"
unzip -o ~/bin/bw -d ~/bin
chmod 0755 ~/bin/bw
export PATH="~/bin:$PATH"
```
### (Linux) Install atuin
```
# If on debian
# sudo apt-get install curl
curl --proto '=https' --tlsv1.2 -LsSf https://setup.atuin.sh | sh
export PATH="~/.atuin/bin:$PATH"
hash -r
atuin login
atuin sync
```
### (Mac) Install bitwarden
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install bitwarden-cli
```
### Install:
```
hash -r
bw login
export BW_SESSION=$(bw unlock --raw)
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply bringhurst
```
## Reset origin
```
chezmoi cd
git remote rm origin
git remote add origin git@github.com:bringhurst/dotfiles.git
```