https://github.com/txj-xyz/dotfiles
dotfiles for anyone to use :3
https://github.com/txj-xyz/dotfiles
dotfiles linux macos
Last synced: 6 months ago
JSON representation
dotfiles for anyone to use :3
- Host: GitHub
- URL: https://github.com/txj-xyz/dotfiles
- Owner: txj-xyz
- Created: 2024-02-26T00:10:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-29T23:57:29.000Z (over 1 year ago)
- Last Synced: 2025-01-30T00:26:49.491Z (over 1 year ago)
- Topics: dotfiles, linux, macos
- Language: Shell
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `dotfiles` for txj-xyz
This repo uses [chezmoi](https://chezmoi.io/) for management of `$HOME` dotfiles.
# Required files
## Fonts:
- [Hack Nerd Font Mono](https://github.com/ryanoasis/nerd-fonts?tab=readme-ov-file#option-7-install-script)
# Setup a new machine with this repo
After having `chezmoi` installed run the following command to pull down the repo's latest changes to the new machine and apply them to your `$HOME` dir
```bash
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply txj-xyz
```
# Updating files / editing
If you want to apply your new updates to tracked files, run:
```bash
# If you updated local files instead of chezmoi, run this
chezoi re-add
# If you updated with `chezmoi cd; nvim`
chezmoi apply
# Edit directly and apply
chezmoi edit ~/.zshrc; chezmoi apply
```