An open API service indexing awesome lists of open source software.

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

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
```